mirror of
https://github.com/mnzlmstr/N64toiQue
synced 2025-01-07 11:58:07 -05:00
31 lines
385 B
C
31 lines
385 B
C
#ifndef CONTROLLER_DATA_H
|
|
#define CONTROLLER_DATA_H
|
|
|
|
struct ControllerData
|
|
{
|
|
bool buttonA;
|
|
bool buttonB;
|
|
bool buttonZ;
|
|
bool buttonL;
|
|
bool buttonR;
|
|
bool buttonStart;
|
|
|
|
bool DPadUp;
|
|
bool DPadDown;
|
|
bool DPadLeft;
|
|
bool DPadRight;
|
|
|
|
bool CUp;
|
|
bool CDown;
|
|
bool CLeft;
|
|
bool CRight;
|
|
|
|
short xAxis;
|
|
short yAxis;
|
|
|
|
bool xAxisRaw[8];
|
|
bool yAxisRaw[8];
|
|
|
|
};
|
|
|
|
#endif |