From 53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb Mon Sep 17 00:00:00 2001 From: aap Date: Sun, 7 Jul 2019 13:09:11 +0200 Subject: the great reorganization --- src/core/CutsceneMgr.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/core/CutsceneMgr.h (limited to 'src/core/CutsceneMgr.h') diff --git a/src/core/CutsceneMgr.h b/src/core/CutsceneMgr.h new file mode 100644 index 00000000..89f6ab8d --- /dev/null +++ b/src/core/CutsceneMgr.h @@ -0,0 +1,15 @@ +#pragma once + +class CDirectory; + +class CCutsceneMgr +{ + static bool &ms_running; + static bool &ms_cutsceneProcessing; + +public: + static CDirectory *&ms_pCutsceneDir; + + static bool IsRunning(void) { return ms_running; } + static bool IsCutsceneProcessing(void) { return ms_cutsceneProcessing; } +}; -- cgit v1.2.3