mirror of
https://github.com/nzp-team/glquake.git
synced 2025-02-18 01:31:36 +00:00
17 lines
295 B
C
17 lines
295 B
C
|
#ifndef __TOUCH__
|
||
|
#define __TOUCH__
|
||
|
|
||
|
//Touchscreen mode identifiers
|
||
|
#define TMODE_TOUCHPAD 1
|
||
|
#define TMODE_KEYBOARD 2
|
||
|
#define TMODE_SETTINGS 3
|
||
|
|
||
|
void Touch_TouchpadTap();
|
||
|
void Touch_KeyboardTap();
|
||
|
void Touch_ProcessTap();
|
||
|
void Touch_DrawOverlay();
|
||
|
void Touch_Init();
|
||
|
void Touch_Update();
|
||
|
|
||
|
#endif
|