Package-level declarations
Types
Link copied to clipboard
data class BasicPlayer(val id: UUID = UUID.randomUUID(), val deck: ArrayDeque<CardInstance> = ArrayDeque(), val hand: MutableList<CardInstance> = mutableListOf(), val board: MutableList<CardInstance> = mutableListOf(), val graveyard: MutableList<CardInstance> = mutableListOf(), var health: Int = 10, var mana: Int = 0, var maxMana: Int = 0) : Player