16 lines
252 B
C#
16 lines
252 B
C#
|
|
using Robust.Shared.Serialization;
|
||
|
|
|
||
|
|
namespace Content.Shared.Delivery;
|
||
|
|
|
||
|
|
[Serializable, NetSerializable]
|
||
|
|
public enum DeliveryVisuals : byte
|
||
|
|
{
|
||
|
|
IsLocked,
|
||
|
|
IsTrash,
|
||
|
|
IsBroken,
|
||
|
|
IsFragile,
|
||
|
|
IsPriority,
|
||
|
|
IsPriorityInactive,
|
||
|
|
JobIcon,
|
||
|
|
}
|