mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-06 08:20:49 +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;
|