PKHeX/PKHeX.Core/Saves/Substructures/Misc/SlotGroup.cs

10 lines
206 B
C#
Raw Normal View History

2021-12-06 07:54:59 +00:00
namespace PKHeX.Core;
2021-12-06 07:54:59 +00:00
public sealed record SlotGroup(string GroupName, PKM[] Slots)
{
#if DEBUG
public override string ToString() => $"{GroupName}: {Slots.Length} {Slots.GetType().Name}";
#endif
}
2021-12-06 07:54:59 +00:00