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