Files
tbd-station-14/Content.Shared/Delivery/DeliveryVisuals.cs
2025-04-27 02:13:52 -07:00

29 lines
437 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Delivery;
[Serializable, NetSerializable]
public enum DeliveryVisuals : byte
{
IsLocked,
IsTrash,
IsBroken,
IsFragile,
PriorityState,
JobIcon,
}
[Serializable, NetSerializable]
public enum DeliveryPriorityState : byte
{
Off,
Active,
Inactive,
}
[Serializable, NetSerializable]
public enum DeliverySpawnerVisuals : byte
{
Contents,
}