11 lines
371 B
C#
11 lines
371 B
C#
using Questionable.Controller.Steps;
|
|
|
|
namespace Questionable.Controller.CustomDelivery;
|
|
|
|
internal sealed record SatisfactionSupplyTurnInTask(int NpcIndex, EDeliverySlot Slot, int DeliveryCount, uint NpcDataId, uint ItemId, ushort Collectability) : ITask
|
|
{
|
|
public override string ToString()
|
|
{
|
|
return $"TurnIn(npc={NpcIndex}, slot={Slot}, count={DeliveryCount})";
|
|
}
|
|
}
|