Files
wwdpublic/Content.Shared/Follower/Components/FollowedComponent.cs
2023-09-27 21:59:12 +02: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();
}