diff options
author | aap <aap@papnet.eu> | 2019-06-02 10:25:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-02 10:25:55 +0200 |
commit | 9c26e46e17b421288f7653f4c9cff81b4b6cdfb0 (patch) | |
tree | c1b34122ddd4be0461a5310c964e8218b9f5781e /src/Game.h | |
parent | implemented splashes; fixed zones (diff) | |
parent | Merge branch 'master' into master (diff) | |
download | re3-9c26e46e17b421288f7653f4c9cff81b4b6cdfb0.tar re3-9c26e46e17b421288f7653f4c9cff81b4b6cdfb0.tar.gz re3-9c26e46e17b421288f7653f4c9cff81b4b6cdfb0.tar.bz2 re3-9c26e46e17b421288f7653f4c9cff81b4b6cdfb0.tar.lz re3-9c26e46e17b421288f7653f4c9cff81b4b6cdfb0.tar.xz re3-9c26e46e17b421288f7653f4c9cff81b4b6cdfb0.tar.zst re3-9c26e46e17b421288f7653f4c9cff81b4b6cdfb0.zip |
Diffstat (limited to 'src/Game.h')
-rw-r--r-- | src/Game.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -16,10 +16,15 @@ public: static bool &nastyGame; static bool &frenchGame; static bool &germanGame; + static bool &noProstitutes; static void Process(void); static Bool InitialiseOnceBeforeRW(void); static Bool InitialiseRenderWare(void); static void ShutdownRenderWare(void); static void FinalShutdown(void); + static void ShutDown(void); + static void ShutDownForRestart(void); + static void InitialiseWhenRestarting(void); + static Bool InitialiseOnceAfterRW(void); }; |