mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-07 14:57:19 -05:00
26 lines
520 B
C#
26 lines
520 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;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Structure containing Mystery Gift Block Data
|
|
/// </summary>
|
|
public struct MysteryGiftAlbum
|
|
{
|
|
public MysteryGift[] Gifts;
|
|
public bool[] Flags;
|
|
public uint Seed;
|
|
}
|
|
}
|