Files
tbd-station-14/Content.Shared/Follower/Components/FollowedComponent.cs
2023-09-11 09:42:41 +10:00

16 lines
445 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Follower.Components;
// TODO properly network this and followercomp.
/// <summary>
/// Attached to entities that are currently being followed by a ghost.
/// </summary>
[RegisterComponent, Access(typeof(FollowerSystem))]
[NetworkedComponent]
public sealed partial class FollowedComponent : Component
{
[DataField("following")]
public HashSet<EntityUid> Following = new();
}