blob: dac35c16c6f5412af5d349f506b726a98467f589 (
plain) (
tree)
|
|
#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; }
};
|