PKHeX/PKHeX.Core/Saves/Substructures/SaveObjects.cs
Evan Dixon 52c4fbbe97 Converted PKHeX.Core to .Net Standard
Refactored and rearranged things as needed to allow the change
2017-05-11 23:34:18 -05:00

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