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

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

package com.github.wakingrufus.elo

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy