Files
tbd-station-14/Content.Server/NPC/Components/NPCPathfindPointComponent.cs
2023-01-19 13:56:45 +11:00

12 lines
316 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;
}