1
0

HairStyles.cs 621 B

1234567891011121314151617181920212223
  1. using Content.Shared.Humanoid.Markings;
  2. namespace Content.Shared.Humanoid
  3. {
  4. public static class HairStyles
  5. {
  6. [ValidatePrototypeId<MarkingPrototype>]
  7. public const string DefaultHairStyle = "HairBald";
  8. [ValidatePrototypeId<MarkingPrototype>]
  9. public const string DefaultFacialHairStyle = "FacialHairShaved";
  10. public static readonly IReadOnlyList<Color> RealisticHairColors = new List<Color>
  11. {
  12. Color.Yellow,
  13. Color.Black,
  14. Color.SandyBrown,
  15. Color.Brown,
  16. Color.Wheat,
  17. Color.Gray
  18. };
  19. }
  20. }