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

Rename Pokemon.Position properties #21

Closed manueldidonna closed 4 years ago

manueldidonna commented 4 years ago
interface Pokemon {
    data class Position(
        /**
         * The index of the [Storage] in the [StorageCollection].
         * @see StorageCollection.getStorage
         */
        val storageIndex: Int,

        /**
         * The index of the [Pokemon] in the [Storage].
         * @see Storage.get
         */
        val pokemonIndex: Int,
    )
}