File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Client/mods/deathmatch/logic Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -586,6 +586,10 @@ class CClientGame
586
586
void SetFileCacheRoot ( void );
587
587
const char * GetFileCacheRoot ( void ) { return m_strFileCacheRoot; }
588
588
589
+ void InsertIFPPointerToMap ( SString strBlockName, CClientIFP * pIFP );
590
+ void RemoveIFPPointerFromMap ( SString strBlockName );
591
+ CClientIFP * GetIFPPointerFromMap ( SString strBlockName );
592
+
589
593
private:
590
594
eStatus m_Status;
591
595
eServerType m_ServerType;
@@ -798,6 +802,9 @@ class CClientGame
798
802
SString m_strFileCacheRoot;
799
803
800
804
SharedUtil::CAsyncTaskScheduler* m_pAsyncTaskScheduler;
805
+
806
+ // (SString) Key is custom block name that is supplied to engineLoadIFP
807
+ std::map < SString, CClientIFP * > m_mapOfIfpPointers;
801
808
};
802
809
803
810
extern CClientGame* g_pClientGame;
You can’t perform that action at this time.
0 commit comments