ThrowingGearActionEnum
enum class ThrowingGearActionEnum
Description: throw bit state
enum class ThrowingGearActionEnum(val value: Int) {
/**
* do not throw
*/
NO_THROW(0),
/**
* throw
*/
ACTION_THROW(1);
}
Description: throw bit state
enum class ThrowingGearActionEnum(val value: Int) {
/**
* do not throw
*/
NO_THROW(0),
/**
* throw
*/
ACTION_THROW(1);
}