summaryrefslogtreecommitdiffstats
path: root/src/control/GameLogic.h
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2019-10-07 23:29:30 +0200
committerSergeanur <s.anureev@yandex.ua>2019-10-08 16:13:23 +0200
commit69963cea68b3057c0e590e30ee438dff801a4d07 (patch)
tree72a25c528dcab00922643b6b820703226b8a6d82 /src/control/GameLogic.h
parentFixed crash when aboarding train (diff)
downloadre3-69963cea68b3057c0e590e30ee438dff801a4d07.tar
re3-69963cea68b3057c0e590e30ee438dff801a4d07.tar.gz
re3-69963cea68b3057c0e590e30ee438dff801a4d07.tar.bz2
re3-69963cea68b3057c0e590e30ee438dff801a4d07.tar.lz
re3-69963cea68b3057c0e590e30ee438dff801a4d07.tar.xz
re3-69963cea68b3057c0e590e30ee438dff801a4d07.tar.zst
re3-69963cea68b3057c0e590e30ee438dff801a4d07.zip
Diffstat (limited to 'src/control/GameLogic.h')
-rw-r--r--src/control/GameLogic.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/control/GameLogic.h b/src/control/GameLogic.h
new file mode 100644
index 00000000..db626558
--- /dev/null
+++ b/src/control/GameLogic.h
@@ -0,0 +1,13 @@
+#pragma once
+
+class CGameLogic
+{
+public:
+ static void InitAtStartOfGame();
+ static void PassTime(uint32 time);
+ static void SortOutStreamingAndMemory(const CVector &pos);
+ static void Update();
+ static void RestorePlayerStuffDuringResurrection(class CPlayerPed *pPlayerPed, CVector pos, float angle);
+
+ static uint8 ActivePlayers;
+}; \ No newline at end of file