Stats

data class Stats(val statId: Int, val statValue: Int)

A Class representing stat values of a game. This data is commonly used for richer stats in games that support it. For example: Left 4 Dead 2.

Parameters

statId

The id of the stat. This is used to reference the id in the schema.

statValue

The value of the stat.

Constructors

Link copied to clipboard
constructor(statId: Int, statValue: Int)

Properties

Link copied to clipboard
val statId: Int
Link copied to clipboard