1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-18 12:03:12 +00:00
re3/src/core/CutsceneMgr.h
2019-07-07 13:09:11 +02:00

16 lines
295 B
C++

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