mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 13:03:06 +00:00
23 lines
425 B
C#
23 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;
|
|||
|
}
|
|||
|
}
|