Files
crystall-punk-14/Content.Server/NPC/Components/NPCPathfindPointComponent.cs

12 lines
307 B
C#
Raw Normal View History

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