| 1144 | } |
| 1145 | |
| 1146 | void GameConfigManager::OnSourceModAllInitialized() |
| 1147 | { |
| 1148 | /* NOW initialize the game file */ |
| 1149 | CGameConfig *pGameConf = (CGameConfig *)g_pGameConf; |
| 1150 | |
| 1151 | char error[255]; |
| 1152 | if (!pGameConf->Reparse(error, sizeof(error))) |
| 1153 | { |
| 1154 | /* :TODO: log */ |
| 1155 | } |
| 1156 | |
| 1157 | sharesys->AddInterface(NULL, this); |
| 1158 | } |
| 1159 | |
| 1160 | void GameConfigManager::OnSourceModAllShutdown() |
| 1161 | { |
nothing calls this directly
no test coverage detected