Interface IPlayerStat
Represents a players game stats
Namespace: R6Stats.Stats.Interfaces
Assembly: R6Stat-Sharp.dll
Syntax
public interface IPlayerStat
Properties
| Improve this Doc View SourceDeaths
Number of times the player died
Declaration
int Deaths { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
KD
Kill/Death ratio of the player
Declaration
double KD { get; }
Property Value
| Type | Description |
|---|---|
| System.Double |
Kills
Number of kill the player got
Declaration
int Kills { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
Losses
Number of games the player lost
Declaration
int Losses { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
WinLose
Win/Lose ratio of the player
Declaration
double WinLose { get; }
Property Value
| Type | Description |
|---|---|
| System.Double |
Wins
Number of games the player won
Declaration
int Wins { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |