summaryrefslogtreecommitdiffstats
path: root/src/core/CutsceneMgr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/CutsceneMgr.h')
-rw-r--r--src/core/CutsceneMgr.h15
1 files changed, 15 insertions, 0 deletions
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; }
+};