PKHeX/PKHeX.Core/Saves/Substructures/SaveObjects.cs
Kurt 69cf1eaa9c add more pkhex.core xml documentation
adds a bunch of documentation useful for those unfamiliar with the core
library
2017-10-23 23:12:58 -07:00

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