NPC refactor (#10122)
Co-authored-by: metalgearsloth <metalgearsloth@gmail.com>
This commit is contained in:
11
Content.Server/NPC/Components/NPCAvoidanceComponent.cs
Normal file
11
Content.Server/NPC/Components/NPCAvoidanceComponent.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user