openmohaa/code/gamespy/common/nitro/touch.h
2023-02-04 21:00:01 +01:00

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