Skip to main content

ThrowingGearActionEnum

enum class ThrowingGearActionEnum

Description: throw bit state

enum class ThrowingGearActionEnum(val value: Int) {
/**
* do not throw
*/
NO_THROW(0),

/**
* throw
*/
ACTION_THROW(1);

}