manueldidonna / pokemon-save-editor-android

A work-in-progress pokémon save editor for Android
GNU General Public License v3.0
0 stars 0 forks source link

Support Hall of Fame #15

Open manueldidonna opened 4 years ago

manueldidonna commented 4 years ago
interface PokemonLeagueHall {
    val size: Int

    fun getRecords(index: Int): List<Record>

    data class Record(
        val speciesId: Int,
        val nickname: String,
        val level: Int
    )
}