All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.wakingrufus.elo.Player.kt Maven / Gradle / Ivy

Go to download

A library which performs ELO calculations for a game league (such as chess)

There is a newer version: 0.4.0
Show newest version
package com.github.wakingrufus.elo

data class Player(
        val id: String,
        val currentRating: Int,
        val gamesPlayed: Int,
        val wins: Int,
        val losses: Int
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy