mirror of
https://github.com/nzp-team/dquakeplus.git
synced 2025-01-08 09:50:56 +00:00
15 lines
244 B
C
15 lines
244 B
C
|
#ifndef __TOUCH__
|
||
|
#define __TOUCH__
|
||
|
|
||
|
//Touchscreen mode identifiers
|
||
|
#define TMODE_TOUCHPAD 1
|
||
|
#define TMODE_SETTINGS 2
|
||
|
|
||
|
void Touch_TouchpadTap();
|
||
|
void Touch_ProcessTap();
|
||
|
void Touch_DrawOverlay();
|
||
|
void Touch_Init();
|
||
|
void Touch_Update();
|
||
|
|
||
|
#endif
|