AdminGroups: Fix Sorting, and move include.

This commit is contained in:
zaCade
2018-07-24 01:35:04 +02:00
parent 5e5dfffb94
commit 7754dd1926
2 changed files with 4 additions and 4 deletions
+34
View File
@@ -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);