BodyPartSymmetry.cs 347 B

12345678910111213141516
  1. using Content.Shared.Body.Components;
  2. using Robust.Shared.Serialization;
  3. namespace Content.Shared.Body.Part
  4. {
  5. /// <summary>
  6. /// Defines the symmetry of a <see cref="BodyComponent"/>.
  7. /// </summary>
  8. [Serializable, NetSerializable]
  9. public enum BodyPartSymmetry
  10. {
  11. None = 0,
  12. Left,
  13. Right
  14. }
  15. }