11 lines
256 B
Kotlin
11 lines
256 B
Kotlin
package ru.dbotthepony.kstarbound.defs.`object`
|
|
|
|
import ru.dbotthepony.kstarbound.defs.TeamType
|
|
import ru.dbotthepony.kstarbound.json.builder.JsonFactory
|
|
|
|
@JsonFactory
|
|
data class DamageTeam(
|
|
val type: TeamType = TeamType.ENVIRONMENT,
|
|
val team: Int = 0
|
|
)
|