PKHeX/PKHeX.Core/Saves/Substructures/Misc/SlotGroup.cs
Kurt 8a7ed99689 Fix s1 team export
oops
Add a tostring override to help visually debug
2020-10-04 08:06:44 -07:00

18 lines
409 B
C#

namespace PKHeX.Core
{
public class SlotGroup
{
public readonly string GroupName;
public readonly PKM[] Slots;
#if DEBUG
public override string ToString() => $"{GroupName}: {Slots.Length} {Slots.GetType().Name}";
#endif
public SlotGroup(string name, PKM[] slots)
{
GroupName = name;
Slots = slots;
}
}
}