2021-09-19 11:07:35 +02:00
|
|
|
namespace Content.Server.Tabletop
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A class that stores per-player data for tabletops.
|
|
|
|
|
/// </summary>
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class TabletopSessionPlayerData
|
2021-09-19 11:07:35 +02:00
|
|
|
{
|
|
|
|
|
public EntityUid Camera { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|