mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-14 08:30:58 +00:00
f64bdccaca
# Conflicts: # source/CMakeLists.txt # source/common/engine/serializer.h
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;
|