6
StarHorizon_Public/Content.Server/NPC/Components/NPCAvoidanceComponent.cs
2025-08-13 15:03:01 +03:00

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;
}