Files
tbd-station-14/Content.Shared/Rotation/SharedRotationComponent.cs
2021-06-09 22:19:39 +02:00

27 lines
474 B
C#

#nullable enable
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,
}
}