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
586586 void SetFileCacheRoot ( void );
587587 const char * GetFileCacheRoot ( void ) { return m_strFileCacheRoot; }
588588
589+ void InsertIFPPointerToMap ( SString strBlockName, CClientIFP * pIFP );
590+ void RemoveIFPPointerFromMap ( SString strBlockName );
591+ CClientIFP * GetIFPPointerFromMap ( SString strBlockName );
592+
589593private:
590594 eStatus m_Status;
591595 eServerType m_ServerType;
@@ -798,6 +802,9 @@ class CClientGame
798802 SString m_strFileCacheRoot;
799803
800804 SharedUtil::CAsyncTaskScheduler* m_pAsyncTaskScheduler;
805+
806+ // (SString) Key is custom block name that is supplied to engineLoadIFP
807+ std::map < SString, CClientIFP * > m_mapOfIfpPointers;
801808};
802809
803810extern CClientGame* g_pClientGame;
You can’t perform that action at this time.
0 commit comments