25 lines
475 B
C#
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,
|
|
}
|
|
}
|