mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
21 lines
445 B
C#
21 lines
445 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; }
|
|
}
|
|
}
|