06e48c7059
# Conflicts: # src/control/Replay.h
14 lines
265 B
C++
14 lines
265 B
C++
#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; }
|
|
|
|
static Bool &ms_running;
|
|
};
|