Files
RobustToolbox/Robust.Server/GameObjects/Components/Actor/ActorComponent.cs
2023-10-24 20:18:58 +11:00

14 lines
335 B
C#

using Robust.Shared.GameObjects;
using Robust.Shared.Player;
using Robust.Shared.ViewVariables;
namespace Robust.Server.GameObjects
{
[RegisterComponent]
public sealed partial class ActorComponent : Component
{
[ViewVariables]
public ICommonSession PlayerSession { get; internal set; } = default!;
}
}