the great reorganization

This commit is contained in:
aap 2019-07-07 13:09:11 +02:00
commit 53023eb65b
150 changed files with 45 additions and 37 deletions

15
src/core/CutsceneMgr.h Normal file
View file

@ -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; }
};