Files
tbd-station-14/Content.Server/Arcade/BlockGame/BlockGameArcadeComponent.cs
2023-06-15 21:25:25 +10:00

23 lines
603 B
C#

using Robust.Server.Player;
namespace Content.Server.Arcade.BlockGame;
[RegisterComponent]
public sealed class BlockGameArcadeComponent : Component
{
/// <summary>
/// The currently active session of NT-BG.
/// </summary>
public BlockGame? Game = null;
/// <summary>
/// The player currently playing the active session of NT-BG.
/// </summary>
public IPlayerSession? Player = null;
/// <summary>
/// The players currently viewing (but not playing) the active session of NT-BG.
/// </summary>
public readonly List<IPlayerSession> Spectators = new();
}