Files
tbd-station-14/Content.Shared/Body/Part/BodyPartSymmetry.cs
2021-07-16 17:37:09 -07:00

17 lines
333 B
C#

using System;
using Robust.Shared.Serialization;
namespace Content.Shared.Body.Part
{
/// <summary>
/// Defines the symmetry of a <see cref="SharedBodyPartComponent"/>.
/// </summary>
[Serializable, NetSerializable]
public enum BodyPartSymmetry
{
None = 0,
Left,
Right
}
}