namespace Content.Server.NPC.Components; /// /// Should this entity be considered for collision avoidance /// [RegisterComponent] public sealed partial class NPCAvoidanceComponent : Component { [ViewVariables(VVAccess.ReadWrite), DataField("enabled")] public bool Enabled = true; }