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

12 lines
307 B
C#

namespace Content.Server.NPC.Components;
[RegisterComponent]
public sealed class NPCPathfindPointComponent : Component
{
/// <summary>
/// Next point for the NPC to head to.
/// </summary>
// [ViewVariables(VVAccess.ReadWrite), DataField("nextPoint")]
// public EntityUid? NextPoint;
}