mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-06 17:58:05 +02:00
15 lines
345 B
C#
15 lines
345 B
C#
using Robust.Server.Player;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Robust.Server.GameObjects
|
|
{
|
|
public class ActorComponent : Component
|
|
{
|
|
public override string Name => "Actor";
|
|
|
|
[ViewVariables]
|
|
public IPlayerSession PlayerSession { get; internal set; } = default!;
|
|
}
|
|
}
|