This commit is contained in:
BotoX
2019-09-23 12:43:18 +02:00
parent a184a1f0e4
commit 603c5e5b09
12 changed files with 0 additions and 936 deletions
@@ -0,0 +1,34 @@
#if defined _admingroups_included_
#endinput
#endif
#define _admingroups_included_
/**
* Create a admin group.
*
* @param group Name of the group to create.
*/
native void AdminGroups_CreateAdminGroup(const char[] group);
/**
* Delete a admin group.
*
* @param group Name of the group to delete.
*/
native void AdminGroups_DeleteAdminGroup(const char[] group);
/**
* Grant a admin group.
*
* @param client Client to grant to.
* @param group Name of the group to grant.
*/
native void AdminGroups_GrantAdminGroup(int client, const char[] group);
/**
* Revoke a admin group.
*
* @param client Client to revoke from.
* @param group Name of the group to revoke.
*/
native void AdminGroups_RevokeAdminGroup(int client, const char[] group);