1
0

HumanoidVisualLayers.cs 684 B

1234567891011121314151617181920212223242526272829303132333435
  1. using Content.Shared.Humanoid.Markings;
  2. using Robust.Shared.Serialization;
  3. namespace Content.Shared.Humanoid
  4. {
  5. [Serializable, NetSerializable]
  6. public enum HumanoidVisualLayers : byte
  7. {
  8. Special, // for the cat ears
  9. Tail,
  10. Hair,
  11. FacialHair,
  12. UndergarmentTop,
  13. UndergarmentBottom,
  14. Chest,
  15. Head,
  16. Snout,
  17. HeadSide, // side parts (i.e., frills)
  18. HeadTop, // top parts (i.e., ears)
  19. Eyes,
  20. RArm,
  21. LArm,
  22. RHand,
  23. LHand,
  24. RLeg,
  25. LLeg,
  26. RFoot,
  27. LFoot,
  28. Handcuffs,
  29. StencilMask,
  30. Ensnare,
  31. Fire,
  32. }
  33. }