using System.Collections.Generic;
using Robust.Shared.Analyzers;
using Robust.Shared.GameObjects;
namespace Content.Shared.Follower.Components;
///
/// Attached to entities that are currently being followed by a ghost.
///
[RegisterComponent, ComponentProtoName("Followed"), Friend(typeof(FollowerSystem))]
public class FollowedComponent : Component
{
public HashSet Following = new();
}