2023-08-30 21:46:11 -07:00
|
|
|
|
using Content.Shared.Players;
|
2023-10-28 09:59:53 +11:00
|
|
|
|
using Robust.Shared.Player;
|
2023-08-30 21:46:11 -07:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Players;
|
|
|
|
|
|
|
|
|
|
|
|
public sealed class PlayerSystem : SharedPlayerSystem
|
|
|
|
|
|
{
|
2023-10-28 09:59:53 +11:00
|
|
|
|
public override ContentPlayerData? ContentData(ICommonSession? session)
|
2023-08-30 21:46:11 -07:00
|
|
|
|
{
|
|
|
|
|
|
return session?.ContentData();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|