Game Team
data class GameTeam(val group: Group, val players: MutableList<PlayerUser> = mutableListOf(), var dungeon: Dungeon? = null, var difficulty: Int = 1, var inBattle: Boolean = false)
游戏队伍数据类
Constructors
Link copied to clipboard
constructor(group: Group, players: MutableList<PlayerUser> = mutableListOf(), dungeon: Dungeon? = null, difficulty: Int = 1, inBattle: Boolean = false)