Files
tbd-station-14/Content.Shared/Rotation/SharedRotationComponent.cs
2022-05-13 17:59:03 +10:00

25 lines
443 B
C#

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