12 lines
279 B
C#
12 lines
279 B
C#
|
|
using Robust.Shared.Analyzers;
|
|||
|
|
using Robust.Shared.GameObjects;
|
|||
|
|
|
|||
|
|
namespace Content.Shared.Follower.Components;
|
|||
|
|
|
|||
|
|
[RegisterComponent, ComponentProtoName("Follower")]
|
|||
|
|
[Friend(typeof(FollowerSystem))]
|
|||
|
|
public class FollowerComponent : Component
|
|||
|
|
{
|
|||
|
|
public EntityUid Following;
|
|||
|
|
}
|