re3/src/CutsceneMgr.h

11 lines
235 B
C
Raw Normal View History

2019-05-31 09:44:43 +00:00
#pragma once
class CCutsceneMgr
{
2019-06-12 14:52:26 +00:00
static bool &ms_running;
2019-05-31 09:44:43 +00:00
static bool &ms_cutsceneProcessing;
public:
2019-06-12 14:52:26 +00:00
static bool IsRunning(void) { return ms_running; }
2019-05-31 09:44:43 +00:00
static bool IsCutsceneProcessing(void) { return ms_cutsceneProcessing; }
};