Files
tbd-station-14/Content.Shared/Follower/Components/FollowedComponent.cs
Vera Aguilera Puerto c5f7c61041 Fix some friend access violations by allowing others access. (#8594)
Rename Friend attribute to Access attribute.
Updates submodule to v0.21.0.0 as well.
2022-06-07 11:30:27 +02:00

15 lines
408 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 class FollowedComponent : Component
{
public HashSet<EntityUid> Following = new();
}