mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-25 08:05:29 -05:00
7 lines
241 B
C#
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);
|