mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
26 lines
394 B
C#
26 lines
394 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.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
|
|
}
|