diff options
Diffstat (limited to 'src/core/CutsceneMgr.h')
-rw-r--r-- | src/core/CutsceneMgr.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/CutsceneMgr.h b/src/core/CutsceneMgr.h index 89f6ab8d..aa5a2eb2 100644 --- a/src/core/CutsceneMgr.h +++ b/src/core/CutsceneMgr.h @@ -1,4 +1,5 @@ #pragma once +#include "CutsceneObject.h" class CDirectory; @@ -6,10 +7,12 @@ class CCutsceneMgr { static bool &ms_running; static bool &ms_cutsceneProcessing; + static CCutsceneObject *(&ms_pCutsceneObjects)[NUMCUTSCENEOBJECTS]; public: static CDirectory *&ms_pCutsceneDir; static bool IsRunning(void) { return ms_running; } static bool IsCutsceneProcessing(void) { return ms_cutsceneProcessing; } + static CCutsceneObject* GetCutsceneObject(int id) { return ms_pCutsceneObjects[id]; } }; |