Rated Match
open class RatedMatch(val white: Player, val black: Player, val eloCalculator: EloCalculator, val id: Any? = null, val round: Int? = null) : Match
Represents a standard competitive match between two Players. This class handles the automation of score accumulation, Elo rating updates, and opponent tracking once an outcome is reached.
Author
lunalobos
Since
1.0.0-beta.8
Constructors
Link copied to clipboard
constructor(white: Player, black: Player, eloCalculator: EloCalculator, id: Any? = null, round: Int? = null)