1
0
mirror of https://github.com/td512/re3.git synced 2026-02-19 09:14:58 +00:00
Files
td512.re3/src/CutsceneMgr.h
2019-05-31 11:44:43 +02:00

9 lines
157 B
C++

#pragma once
class CCutsceneMgr
{
static bool &ms_cutsceneProcessing;
public:
static bool IsCutsceneProcessing(void) { return ms_cutsceneProcessing; }
};