mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-06 17:58:05 +02:00
21 lines
446 B
C#
21 lines
446 B
C#
using Robust.Server.Interfaces.Player;
|
|
using Robust.Shared.Network;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Robust.Server.Player
|
|
{
|
|
class PlayerData : IPlayerData
|
|
{
|
|
public PlayerData(NetSessionId sessionId)
|
|
{
|
|
SessionId = sessionId;
|
|
}
|
|
|
|
[ViewVariables]
|
|
public NetSessionId SessionId { get; }
|
|
|
|
[ViewVariables]
|
|
public object? ContentDataUncast { get; set; }
|
|
}
|
|
}
|