Files
crystall-punk-14/Content.Shared/Body/Part/BodyPartSymmetry.cs

17 lines
347 B
C#
Raw Permalink Normal View History

2022-05-13 00:59:03 -07:00
using Content.Shared.Body.Components;
using Robust.Shared.Serialization;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.Body.Part
{
/// <summary>
/// Defines the symmetry of a <see cref="BodyComponent"/>.
/// </summary>
[Serializable, NetSerializable]
public enum BodyPartSymmetry
{
None = 0,
Left,
Right
}
}