13 lines
215 B
C#
13 lines
215 B
C#
|
|
using System;
|
|||
|
|
using Robust.Shared.Serialization;
|
|||
|
|
|
|||
|
|
namespace Content.Shared.Tabletop
|
|||
|
|
{
|
|||
|
|
[Serializable, NetSerializable]
|
|||
|
|
public enum TabletopItemVisuals : byte
|
|||
|
|
{
|
|||
|
|
Scale,
|
|||
|
|
DrawDepth
|
|||
|
|
}
|
|||
|
|
}
|