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

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