Files
tbd-station-14/Content.Server/NPC/Components/NPCAvoidanceComponent.cs

12 lines
312 B
C#

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