Files
tbd-station-14/Content.Server/Tabletop/Components/TabletopGamerComponent.cs
2022-05-13 17:59:03 +10:00

13 lines
391 B
C#

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