summaryrefslogtreecommitdiffstats
path: root/src/CutsceneMgr.h
blob: 0952c2fb576ab117561e5201da580a8a3db55628 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

class CCutsceneMgr
{
	static bool &ms_cutsceneProcessing;
	
public:
	static bool IsCutsceneProcessing(void) { return ms_cutsceneProcessing; }
	
	static Bool &ms_running;
};