com.github.wakingrufus.elo.RatingHistoryItem.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 RatingHistoryItem(
val playerId: String,
val gameId: String,
val ratingAdjustment: Int,
val startingRating: Int,
val win: Boolean
)