using Robust.Shared.Serialization; namespace Content.Shared.Rotation { [Serializable, NetSerializable] public enum RotationVisuals { RotationState } [Serializable, NetSerializable] public enum RotationState { /// /// Standing up. This is the default value. /// Vertical = 0, /// /// Laying down /// Horizontal, } }