Files
tbd-station-14/Content.Shared/Humanoid/HairStyles.cs
Tayrtahn c565b44965 Replace ValidatePrototypeId uses with ProtoId or EntProtoId (#38814)
* The easy ones

* For certain values of easy

* Easy test

* Hair

* Fix sandbox violations

* Sort usings
2025-07-07 21:57:05 +02:00

23 lines
615 B
C#

using Content.Shared.Humanoid.Markings;
using Robust.Shared.Prototypes;
namespace Content.Shared.Humanoid
{
public static class HairStyles
{
public static readonly ProtoId<MarkingPrototype> DefaultHairStyle = "HairBald";
public static readonly ProtoId<MarkingPrototype> DefaultFacialHairStyle = "FacialHairShaved";
public static readonly IReadOnlyList<Color> RealisticHairColors = new List<Color>
{
Color.Yellow,
Color.Black,
Color.SandyBrown,
Color.Brown,
Color.Wheat,
Color.Gray
};
}
}