TabletopItemVisuals.cs 201 B

1234567891011
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Tabletop
  3. {
  4. [Serializable, NetSerializable]
  5. public enum TabletopItemVisuals : byte
  6. {
  7. Scale,
  8. DrawDepth
  9. }
  10. }