#nullable enable using System; using Robust.Shared.Serialization; namespace Content.Shared.GameObjects.Components.Body.Part { /// /// Defines the symmetry of a . /// [Serializable, NetSerializable] public enum BodyPartSymmetry { None = 0, Left, Right } }