Re-organize all projects (#4166)
This commit is contained in:
26
Content.Shared/Rotation/SharedRotationComponent.cs
Normal file
26
Content.Shared/Rotation/SharedRotationComponent.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
#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,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user