Files
vba10/Input.h

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;
};
}