mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-02-05 21:30:55 +00:00
13 lines
214 B
C
13 lines
214 B
C
#pragma once
|
|
|
|
|
|
struct SystemCallbacks
|
|
{
|
|
bool (*WantGuiCapture)();
|
|
bool (*WantLeftButton)();
|
|
bool (*NetGame)();
|
|
bool (*WantNativeMouse)();
|
|
bool (*CaptureModeInGame)();
|
|
};
|
|
|
|
extern SystemCallbacks *sysCallbacks;
|