fish-station/Content.Shared/CharacterAppearance/HumanoidVisualLayers.cs
metalgearsloth 92ff81b6c9
Initial mockup of the Reptilian species (#6973)
Co-authored-by: ZeroDayDaemon <60460608+ZeroDayDaemon@users.noreply.github.com>
2022-03-10 15:05:07 +11:00

30 lines
512 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.CharacterAppearance
{
[Serializable, NetSerializable]
public enum HumanoidVisualLayers : byte
{
TailBehind,
Hair,
FacialHair,
Chest,
Head,
Snout,
Frills,
Horns,
Eyes,
RArm,
LArm,
RHand,
LHand,
RLeg,
LLeg,
RFoot,
LFoot,
TailFront,
Handcuffs,
StencilMask,
Fire,
}
}