2022-02-08 00:42:49 -08:00
|
|
|
using Robust.Shared.Analyzers;
|
2022-01-09 22:47:37 -07:00
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Follower.Components;
|
|
|
|
|
|
2022-02-08 00:42:49 -08:00
|
|
|
[RegisterComponent]
|
2022-01-09 22:47:37 -07:00
|
|
|
[Friend(typeof(FollowerSystem))]
|
|
|
|
|
public class FollowerComponent : Component
|
|
|
|
|
{
|
|
|
|
|
public EntityUid Following;
|
|
|
|
|
}
|