PlayerRankings: Adding, previously TopDefenders.

This commit is contained in:
zaCade
2019-07-15 13:03:37 +02:00
parent 964b7089a9
commit 522d2c95a3
15 changed files with 1023 additions and 0 deletions
@@ -0,0 +1,28 @@
#if defined _PlayerRankings_OnRoundEnd
#endinput
#endif
#define _PlayerRankings_OnRoundEnd
/**
* Returns the current damage of a client
*
* @param client Client index.
* @return The current damage of the client.
*/
native int PlayerRankings_GetClientDamage(int client);
/**
* Returns the current hits of a client
*
* @param client Client index.
* @return The current hits of the client.
*/
native int PlayerRankings_GetClientHits(int client);
/**
* Returns the current infections of a client
*
* @param client Client index.
* @return The current infections of the client.
*/
native int PlayerRankings_GetClientInfections(int client);