summaryrefslogtreecommitdiffstats
path: root/src/CutsceneMgr.h
blob: 89f6ab8d89d693b6961d6303ed32aa88262e0a30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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; }
};