void SourceMod_Core::OnUnlinkConCommandBase(PluginId id, ConCommandBase *pCommand)
{
	Global_OnUnlinkConCommandBase(pCommand);
}
void SourceMod_Core::OnPluginUnload(PluginId id)
{
	Global_OnUnlinkConCommandBase(NULL);
}
示例#3
0
void SourceMod_Core::OnUnlinkConCommandBase(PluginId id, ConCommandBase *pCommand)
{
#if SOURCE_ENGINE < SE_ORANGEBOX
	Global_OnUnlinkConCommandBase(pCommand);
#endif
}