28 lines
		
	
	
		
			664 B
		
	
	
	
		
			SourcePawn
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			664 B
		
	
	
	
		
			SourcePawn
		
	
	
	
	
	
| #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); |