Files
tbd-station-14/Content.Shared/GameObjects/Components/Body/Part/BodyPartSymmetry.cs
2020-11-15 14:22:59 +11:00

17 lines
342 B
C#

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