namespace Content.Server.Tabletop.Components { /// /// Component for marking an entity as currently playing a tabletop. /// [RegisterComponent, Access(typeof(TabletopSystem))] public sealed class TabletopGamerComponent : Component { [DataField("tabletop")] public EntityUid Tabletop { get; set; } = EntityUid.Invalid; } }