mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 21:57:57 +03:00
15 lines
No EOL
213 B
C
15 lines
No EOL
213 B
C
#ifndef _TOUCH_H_
|
|
#define _TOUCH_H_
|
|
|
|
#define TOUCH_X_RANGE 256
|
|
#define TOUCH_Y_RANGE 192
|
|
|
|
void TouchInit(void);
|
|
|
|
// 0 <= x <= 255
|
|
// 0 <= y <= 191
|
|
BOOL GetTouch(int * x, int * y);
|
|
|
|
void WaitForTouch(void);
|
|
|
|
#endif |