com.github.wakingrufus.elo.LeagueState.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lib-elo Show documentation
Show all versions of lib-elo Show documentation
A library which performs ELO calculations for a game league (such as chess)
package com.github.wakingrufus.elo
data class LeagueState(val league: League,
val players: Map = HashMap(),
val history: List = ArrayList())