mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-09 04:24:36 -05:00
23 lines
430 B
C#
23 lines
430 B
C#
namespace PKHeX.Core
|
|
{
|
|
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;
|
|
}
|
|
}
|