Files
tbd-station-14/Content.Server/NPC/Components/NPCAvoidanceComponent.cs
metalgearsloth 0286b88388 NPC refactor (#10122)
Co-authored-by: metalgearsloth <metalgearsloth@gmail.com>
2022-09-06 00:28:23 +10:00

12 lines
304 B
C#

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