mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-16 12:39:02 +00:00
9 lines
157 B
C
9 lines
157 B
C
|
#pragma once
|
||
|
|
||
|
class CCutsceneMgr
|
||
|
{
|
||
|
static bool &ms_cutsceneProcessing;
|
||
|
public:
|
||
|
static bool IsCutsceneProcessing(void) { return ms_cutsceneProcessing; }
|
||
|
};
|