com.github.wakingrufus.elo.Game.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
import java.time.Instant
data class Game(val id: String,
val team1Score: Int,
val team2Score: Int,
val entryDate: Instant,
val team1PlayerIds: List,
val team2PlayerIds: List)