Re-organize all projects (#4166)
This commit is contained in:
17
Content.Shared/Body/Part/BodyPartSymmetry.cs
Normal file
17
Content.Shared/Body/Part/BodyPartSymmetry.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
#nullable enable
|
||||
using System;
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.Body.Part
|
||||
{
|
||||
/// <summary>
|
||||
/// Defines the symmetry of a <see cref="IBodyPart"/>.
|
||||
/// </summary>
|
||||
[Serializable, NetSerializable]
|
||||
public enum BodyPartSymmetry
|
||||
{
|
||||
None = 0,
|
||||
Left,
|
||||
Right
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user