2022-09-06 00:28:23 +10:00
|
|
|
namespace Content.Server.NPC.Components;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class NPCPathfindPointComponent : Component
|
2022-09-06 00:28:23 +10:00
|
|
|
{
|
2023-01-19 03:56:45 +01:00
|
|
|
// /// <summary>
|
|
|
|
|
// /// Next point for the NPC to head to.
|
|
|
|
|
// /// </summary>
|
2022-09-06 00:28:23 +10:00
|
|
|
// [ViewVariables(VVAccess.ReadWrite), DataField("nextPoint")]
|
|
|
|
|
// public EntityUid? NextPoint;
|
|
|
|
|
}
|