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

commonMain.com.bselzer.gw2.v2.model.character.wvw.CharacterWvwAbility.kt Maven / Gradle / Ivy

The newest version!
package com.bselzer.gw2.v2.model.character.wvw

import com.bselzer.gw2.v2.model.wvw.ability.WvwAbilityId
import com.bselzer.gw2.v2.model.wvw.rank.WvwLevel
import com.bselzer.ktx.value.identifier.Identifiable
import kotlinx.serialization.Serializable

@Serializable
data class CharacterWvwAbility(
    /**
     * The id of the ability.
     * @see the wiki
     */
    override val id: WvwAbilityId = WvwAbilityId(),

    /**
     * The rank of the ability.
     */
    val rank: WvwLevel = WvwLevel()
) : Identifiable




© 2015 - 2024 Weber Informatics LLC | Privacy Policy