Files
PKHeX/PKHeX.Core/Legality/Bulk/CombinedReference.cs
Kurt 90cfa59102 Misc tweaks
Pass Analysis to external localizer
Cache index for bulk analysis flagged slots
2025-07-29 20:12:41 -05:00

7 lines
241 B
C#

namespace PKHeX.Core.Bulk;
/// <summary>
/// Tuple wrapper to store a legality analysis result and the slot it was generated from.
/// </summary>
public sealed record CombinedReference(SlotCache Slot, LegalityAnalysis Analysis, int Index);