PKHeX/Saves/SaveObjects.cs
Kaphotics 6378eb7f56 Current progress
Still a few milestones left to hit before official release.
2016-06-19 21:22:43 -07:00

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;
}
}