26 lines
401 B
C#
26 lines
401 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared._EE.FootPrint;
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum FootPrintVisuals : byte
|
|
{
|
|
BareFootPrint,
|
|
ShoesPrint,
|
|
SuitPrint,
|
|
Dragging
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum FootPrintVisualState : byte
|
|
{
|
|
State,
|
|
Color
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum FootPrintVisualLayers : byte
|
|
{
|
|
Print
|
|
}
|