Added forwards to basecomm plugin (bug 5466, r=asherkin).

This commit is contained in:
Drifter
2012-09-03 20:45:11 +01:00
parent eceb9008cd
commit 34d2db6d78
4 changed files with 91 additions and 2 deletions
+16
View File
@@ -35,6 +35,22 @@
#endif
#define _basecomm_included
/**
* Called when a client is muted or unmuted
*
* @param client Client index
* @param muteState True if client was muted, false otherwise
*/
forward BaseComm_OnClientMute(client, bool:muteState);
/**
* Called when a client is gagged or ungagged
*
* @param client Client index
* @param gagState True if client was gaged, false otherwise
*/
forward BaseComm_OnClientGag(client, bool:gagState);
/**
* Returns whether or not a client is gagged
*