mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-17 09:51:38 +00:00
14 lines
214 B
C
14 lines
214 B
C
|
#pragma once
|
||
|
|
||
|
|
||
|
struct SystemCallbacks
|
||
|
{
|
||
|
bool (*WantGuiCapture)();
|
||
|
bool (*WantLeftButton)();
|
||
|
bool (*NetGame)();
|
||
|
bool (*WantNativeMouse)();
|
||
|
bool (*CaptureModeInGame)();
|
||
|
};
|
||
|
|
||
|
extern SystemCallbacks *sysCallbacks;
|