| 1318 | } |
| 1319 | |
| 1320 | void CExtensionManager::CallOnCoreMapStart(edict_t *pEdictList, int edictCount, int clientMax) |
| 1321 | { |
| 1322 | IExtensionInterface *pAPI; |
| 1323 | List<CExtension *>::iterator iter; |
| 1324 | |
| 1325 | for (iter=m_Libs.begin(); iter!=m_Libs.end(); iter++) |
| 1326 | { |
| 1327 | if ((pAPI = (*iter)->GetAPI()) == NULL) |
| 1328 | { |
| 1329 | continue; |
| 1330 | } |
| 1331 | if (pAPI->GetExtensionVersion() > 3) |
| 1332 | { |
| 1333 | pAPI->OnCoreMapStart(pEdictList, edictCount, clientMax); |
| 1334 | } |
| 1335 | } |
| 1336 | } |
| 1337 | |
| 1338 | void CExtensionManager::CallOnCoreMapEnd() |
| 1339 | { |
no test coverage detected