forked from aly/qstbak
12 lines
315 B
C#
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})";
|
|
}
|
|
}
|