mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 17:01:51 +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;
|