mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 13:58:33 +00:00
18 lines
409 B
C#
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;
|
|
}
|
|
}
|
|
}
|