NPCPathfindPointComponent.cs 324 B

1234567891011
  1. namespace Content.Server.NPC.Components;
  2. [RegisterComponent]
  3. public sealed partial class NPCPathfindPointComponent : Component
  4. {
  5. // /// <summary>
  6. // /// Next point for the NPC to head to.
  7. // /// </summary>
  8. // [ViewVariables(VVAccess.ReadWrite), DataField("nextPoint")]
  9. // public EntityUid? NextPoint;
  10. }