mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-04 02:57:08 +02:00
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
20 lines
396 B
C#
20 lines
396 B
C#
using Robust.Shared.Network;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Robust.Server.Player
|
|
{
|
|
sealed class PlayerData : IPlayerData
|
|
{
|
|
public PlayerData(NetUserId userId)
|
|
{
|
|
UserId = userId;
|
|
}
|
|
|
|
[ViewVariables]
|
|
public NetUserId UserId { get; }
|
|
|
|
[ViewVariables]
|
|
public object? ContentDataUncast { get; set; }
|
|
}
|
|
}
|