Files
tbd-station-14/Content.Shared/Rotation/SharedRotationComponent.cs
2021-07-16 17:37:09 -07:00

26 lines
457 B
C#

using System;
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,
}
}