Files
crystall-punk-14/Content.Shared/Follower/Components/FollowedComponent.cs

18 lines
531 B
C#
Raw Permalink Normal View History

2022-02-19 16:55:29 -07:00
using Robust.Shared.GameStates;
namespace Content.Shared.Follower.Components;
2022-02-19 16:55:29 -07:00
// TODO properly network this and followercomp.
/// <summary>
/// Attached to entities that are currently being followed by a ghost.
/// </summary>
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
[Access(typeof(FollowerSystem))]
2023-04-23 20:01:15 +10:00
public sealed partial class FollowedComponent : Component
{
public override bool SessionSpecific => true;
[DataField, AutoNetworkedField]
public HashSet<EntityUid> Following = new();
}