update TeamManager

This commit is contained in:
BotoX
2018-08-07 22:33:42 +02:00
parent 39d4e187c2
commit 4e32bbf7ee
3 changed files with 66 additions and 2 deletions
@@ -0,0 +1,36 @@
#if defined _TeamManager_include
#endinput
#endif
#define _TeamManager_include
/**
* Called when warmup ends
*
* @return None
*/
forward void TeamManager_WarmupEnd();
/**
* Returns the status of warmup
*
* @return bool inwarmup
*/
native bool TeamManager_InWarmup();
public SharedPlugin __pl_TeamManager =
{
name = "TeamManager",
file = "TeamManager.smx",
#if defined REQUIRE_PLUGIN
required = 1
#else
required = 0
#endif
};
#if !defined REQUIRE_PLUGIN
public void __pl_TeamManager_SetNTVOptional()
{
MarkNativeAsOptional("TeamManager_InWarmup");
}
#endif