OpenMoHAA 0.82.0
Loading...
Searching...
No Matches
touch.h
1#ifndef _TOUCH_H_
2#define _TOUCH_H_
3
4#define TOUCH_X_RANGE 256
5#define TOUCH_Y_RANGE 192
6
7void TouchInit(void);
8
9// 0 <= x <= 255
10// 0 <= y <= 191
11BOOL GetTouch(int * x, int * y);
12
13void WaitForTouch(void);
14
15#endif