27 lines
474 B
C#
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,
|
|
}
|
|
}
|