2022-02-19 16:55:29 -07:00
|
|
|
using Robust.Shared.GameStates;
|
2022-01-09 22:47:37 -07:00
|
|
|
|
|
|
|
|
namespace Content.Shared.Follower.Components;
|
|
|
|
|
|
2022-02-08 00:42:49 -08:00
|
|
|
[RegisterComponent]
|
2022-06-07 15:26:28 +02:00
|
|
|
[Access(typeof(FollowerSystem))]
|
2023-04-23 20:01:15 +10:00
|
|
|
[NetworkedComponent, AutoGenerateComponentState]
|
|
|
|
|
public sealed partial class FollowerComponent : Component
|
2022-01-09 22:47:37 -07:00
|
|
|
{
|
2023-04-23 20:01:15 +10:00
|
|
|
[AutoNetworkedField, DataField("following")]
|
2022-01-09 22:47:37 -07:00
|
|
|
public EntityUid Following;
|
|
|
|
|
}
|