BodyPartType.cs 405 B

123456789101112131415161718192021
  1. using Content.Shared.Body.Components;
  2. using Robust.Shared.Serialization;
  3. namespace Content.Shared.Body.Part
  4. {
  5. /// <summary>
  6. /// Defines the type of a <see cref="BodyComponent"/>.
  7. /// </summary>
  8. [Serializable, NetSerializable]
  9. public enum BodyPartType
  10. {
  11. Other = 0,
  12. Torso,
  13. Head,
  14. Arm,
  15. Hand,
  16. Leg,
  17. Foot,
  18. Tail
  19. }
  20. }