mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 08:23:12 +00:00
15 lines
275 B
C#
15 lines
275 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
public class SlotGroup
|
|||
|
{
|
|||
|
public readonly string GroupName;
|
|||
|
public readonly PKM[] Slots;
|
|||
|
|
|||
|
public SlotGroup(string name, PKM[] slots)
|
|||
|
{
|
|||
|
GroupName = name;
|
|||
|
Slots = slots;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|