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