muffin v7.5.6

This commit is contained in:
alydev 2026-08-17 20:27:25 +10:00
parent 6266f9e6b7
commit addf2d530f
619 changed files with 264792 additions and 446022 deletions

View file

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
namespace Questionable.Controller.CustomDelivery;
internal sealed class DeliveryPlan
{
public required int NpcIndex { get; init; }
public required EDeliverySlot Slot { get; init; }
public required uint ItemId { get; init; }
public required ushort Collectability { get; init; }
public required int DeliveryCount { get; init; }
public VendorResolverService.RecipeInfo? Recipe { get; init; }
public IReadOnlyList<IngredientPlan> IngredientPlans { get; init; } = Array.Empty<IngredientPlan>();
}