mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
6378eb7f56
Still a few milestones left to hit before official release.
22 lines
425 B
C#
22 lines
425 B
C#
namespace PKHeX
|
|
{
|
|
public struct DaycareSlot
|
|
{
|
|
public uint Experience;
|
|
public PKM PKM;
|
|
public bool Occupied;
|
|
}
|
|
public struct Daycare
|
|
{
|
|
public DaycareSlot[] Slots;
|
|
public bool EggAvailable;
|
|
public ulong Seed;
|
|
}
|
|
|
|
public struct MysteryGiftAlbum
|
|
{
|
|
public MysteryGift[] Gifts;
|
|
public bool[] Flags;
|
|
public uint Seed;
|
|
}
|
|
}
|