2021-09-19 11:07:35 +02:00
|
|
|
namespace Content.Server.Tabletop.Components
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Component for marking an entity as currently playing a tabletop.
|
|
|
|
|
/// </summary>
|
2022-06-07 15:26:28 +02:00
|
|
|
[RegisterComponent, Access(typeof(TabletopSystem))]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class TabletopGamerComponent : Component
|
2021-09-19 11:07:35 +02:00
|
|
|
{
|
|
|
|
|
[DataField("tabletop")]
|
|
|
|
|
public EntityUid Tabletop { get; set; } = EntityUid.Invalid;
|
|
|
|
|
}
|
|
|
|
|
}
|