Re3/src/CutsceneMgr.h

16 lines
295 B
C
Raw Normal View History

2019-05-31 05:44:43 -04:00
#pragma once
class CDirectory;
2019-05-31 05:44:43 -04:00
class CCutsceneMgr
{
2019-06-12 10:52:26 -04:00
static bool &ms_running;
2019-05-31 05:44:43 -04:00
static bool &ms_cutsceneProcessing;
2019-06-12 20:35:26 -04:00
2019-05-31 05:44:43 -04:00
public:
static CDirectory *&ms_pCutsceneDir;
2019-06-12 10:52:26 -04:00
static bool IsRunning(void) { return ms_running; }
2019-05-31 05:44:43 -04:00
static bool IsCutsceneProcessing(void) { return ms_cutsceneProcessing; }
};