mirror of
https://github.com/ZDoom/Raze.git
synced 2025-02-23 03:51:17 +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;
|