mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
13 lines
325 B
C#
13 lines
325 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Follower.Components;
|
|
|
|
[RegisterComponent]
|
|
[Access(typeof(FollowerSystem))]
|
|
[NetworkedComponent, AutoGenerateComponentState]
|
|
public sealed partial class FollowerComponent : Component
|
|
{
|
|
[AutoNetworkedField, DataField("following")]
|
|
public EntityUid Following;
|
|
}
|