Files
tbd-station-14/Content.Shared/Rotation/SharedRotationComponent.cs
2023-05-05 17:27:15 +10:00

25 lines
475 B
C#

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