TabletopGamerComponent.cs 399 B

123456789101112
  1. namespace Content.Server.Tabletop.Components
  2. {
  3. /// <summary>
  4. /// Component for marking an entity as currently playing a tabletop.
  5. /// </summary>
  6. [RegisterComponent, Access(typeof(TabletopSystem))]
  7. public sealed partial class TabletopGamerComponent : Component
  8. {
  9. [DataField("tabletop")]
  10. public EntityUid Tabletop { get; set; } = EntityUid.Invalid;
  11. }
  12. }