KStarbound/src/main/kotlin/ru/dbotthepony/kstarbound/defs/object/LoungeOrientation.kt

13 lines
551 B
Kotlin

package ru.dbotthepony.kstarbound.defs.`object`
import ru.dbotthepony.kstarbound.json.builder.IStringSerializable
import ru.dbotthepony.kstarbound.world.entities.HumanoidActorEntity
// int32_t
enum class LoungeOrientation(override val jsonName: String, val humanoidState: HumanoidActorEntity.HumanoidState) : IStringSerializable {
NONE("none", HumanoidActorEntity.HumanoidState.IDLE),
SIT("sit", HumanoidActorEntity.HumanoidState.SIT),
LAY("lay", HumanoidActorEntity.HumanoidState.LAY),
STAND("stand", HumanoidActorEntity.HumanoidState.IDLE);
}