qstbak/Questionable/Questionable.Controller.CustomDelivery/DeliveryNpcApproachTask.cs
2026-08-17 20:29:32 +10:00

12 lines
315 B
C#

using System.Numerics;
using Questionable.Controller.Steps;
namespace Questionable.Controller.CustomDelivery;
internal sealed record DeliveryNpcApproachTask(ushort TerritoryId, Vector3 NpcPosition, uint NpcDataId) : ITask
{
public override string ToString()
{
return $"ApproachDeliveryNpc({NpcDataId})";
}
}