mirror of
https://github.com/izzy2lost/vba10.git
synced 2026-03-26 18:15:30 -07:00
22 lines
357 B
C++
22 lines
357 B
C++
#pragma once
|
|
|
|
namespace VBA10
|
|
{
|
|
struct ControllerState
|
|
{
|
|
bool LeftPressed;
|
|
bool UpPressed;
|
|
bool RightPressed;
|
|
bool DownPressed;
|
|
bool StartPressed;
|
|
bool SelectPressed;
|
|
bool APressed;
|
|
bool BPressed;
|
|
bool YPressed;
|
|
bool XPressed;
|
|
bool LPressed;
|
|
bool RPressed;
|
|
bool TurboPressed;
|
|
bool TurboTogglePressed;
|
|
};
|
|
} |