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

18 lines
336 B
C#

#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
}
}