Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
20 lines
314 B
C#
20 lines
314 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Markings
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum MarkingCategories : byte
|
|
{
|
|
Head,
|
|
HeadTop,
|
|
HeadSide,
|
|
Snout,
|
|
Chest,
|
|
Arms,
|
|
Legs,
|
|
Tail,
|
|
Overlay
|
|
}
|
|
}
|