Move many player natives from core to logic.

This commit is contained in:
Nicholas Hastings
2014-05-28 23:20:41 -04:00
parent 556d5e0949
commit dbc881143b
6 changed files with 1469 additions and 1328 deletions
+9 -1
View File
@@ -35,7 +35,7 @@
#include <IShareSys.h>
#define SMINTERFACE_ADMINSYS_NAME "IAdminSys"
#define SMINTERFACE_ADMINSYS_VERSION 6
#define SMINTERFACE_ADMINSYS_VERSION 7
/**
* @file IAdminSystem.h
@@ -726,6 +726,14 @@ namespace SourceMod
* @return True on success, false if not found.
*/
virtual bool FindFlagChar(AdminFlag flag, char *c) =0;
/**
* brief Returns whether or not an admin id is valid.
*
* @param id Admin id to check.
* @return True if valid, otherwise false.
*/
virtual bool IsValidAdmin(AdminId id) =0;
};
}