mirror of
https://github.com/GTAmodding/re3.git
synced 2021-02-19 17:49:54 +01:00
16 lines
295 B
C++
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; }
|
|
};
|