com.github.wakingrufus.elo.Player.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 Player(
val id: String,
val currentRating: Int,
val gamesPlayed: Int,
val wins: Int,
val losses: Int
)