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

11 lines
246 B
C#

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