NamcoGuncon: Add button to shoot offscreen

This commit is contained in:
Connor McLaughlin
2020-12-19 13:33:22 +10:00
parent 7ca0d357cb
commit fad3d79895
2 changed files with 13 additions and 1 deletions

View File

@@ -12,6 +12,7 @@ public:
Trigger = 0,
A = 1,
B = 2,
ShootOffscreen = 3,
Count
};
@@ -66,6 +67,7 @@ private:
u16 m_button_state = UINT16_C(0xFFFF);
u16 m_position_x = 0;
u16 m_position_y = 0;
bool m_shoot_offscreen = false;
TransferState m_transfer_state = TransferState::Idle;
};