Files
tbd-station-14/Content.Shared/Follower/Components/FollowerComponent.cs
2023-04-23 20:01:15 +10:00

13 lines
325 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Follower.Components;
[RegisterComponent]
[Access(typeof(FollowerSystem))]
[NetworkedComponent, AutoGenerateComponentState]
public sealed partial class FollowerComponent : Component
{
[AutoNetworkedField, DataField("following")]
public EntityUid Following;
}