MCPcopy Create free account
hub / github.com/alliedmodders/sourcemod / CallOnCoreMapEnd

Method CallOnCoreMapEnd

core/logic/ExtensionSys.cpp:1338–1354  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1336}
1337
1338void CExtensionManager::CallOnCoreMapEnd()
1339{
1340 IExtensionInterface *pAPI;
1341 List<CExtension *>::iterator iter;
1342
1343 for (iter=m_Libs.begin(); iter!=m_Libs.end(); iter++)
1344 {
1345 if ((pAPI = (*iter)->GetAPI()) == NULL)
1346 {
1347 continue;
1348 }
1349 if (pAPI->GetExtensionVersion() > 7)
1350 {
1351 pAPI->OnCoreMapEnd();
1352 }
1353 }
1354}
1355
1356const CVector<IExtension *> *CExtensionManager::ListExtensions()
1357{

Callers 1

LevelShutdownMethod · 0.80

Calls 5

GetAPIMethod · 0.80
GetExtensionVersionMethod · 0.80
beginMethod · 0.45
endMethod · 0.45
OnCoreMapEndMethod · 0.45

Tested by

no test coverage detected