Add OnCoreMapEnd to extension's interface.

This commit is contained in:
Ruben Gonzalez
2014-08-08 01:01:47 -04:00
parent 3edd1ce658
commit 7a88386568
5 changed files with 31 additions and 1 deletions
+10 -1
View File
@@ -136,7 +136,7 @@ namespace SourceMod
* V6 - added TestFeature() to IShareSys.
* V7 - added OnDependenciesDropped() to IExtensionInterface.
*/
#define SMINTERFACE_EXTENSIONAPI_VERSION 7
#define SMINTERFACE_EXTENSIONAPI_VERSION 8
/**
* @brief The interface an extension must expose.
@@ -325,6 +325,15 @@ namespace SourceMod
virtual void OnDependenciesDropped()
{
}
/**
* @brief Called on level shutdown
*
*/
virtual void OnCoreMapEnd()
{
}
};
/**