mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 05:10:54 +01:00
11 lines
246 B
C#
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; }
|
|
}
|
|
}
|