OpenMoHAA 0.82.0
Loading...
Searching...
No Matches
ps2pad.h
1#ifndef __PS2PAD_H__
2#define __PS2PAD_H__
3
4#include "../../../nonport.h"
5
6typedef enum
7{
8 PadLeft,
9 PadDown,
10 PadRight,
11 PadUp,
12 PadStart,
13 PadRightStick,
14 PadLeftStick,
15 PadSelect,
16 PadSquare,
17 PadX,
18 PadCircle,
19 PadTriangle,
20 PadR1,
21 PadL1,
22 PadR2,
23 PadL2,
24 NumPadEvents
25} PadEvents;
26
27int PadInit(void);
28void PadReadInput(int events[NumPadEvents]);
29
30#endif