Files
tbd-station-14/Content.Server/Tabletop/TabletopSessionPlayerData.cs
2022-02-16 18:23:23 +11:00

13 lines
280 B
C#

using Robust.Shared.GameObjects;
namespace Content.Server.Tabletop
{
/// <summary>
/// A class that stores per-player data for tabletops.
/// </summary>
public sealed class TabletopSessionPlayerData
{
public EntityUid Camera { get; set; }
}
}