12 lines
307 B
C#
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;
|
|
}
|