mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
69cf1eaa9c
adds a bunch of documentation useful for those unfamiliar with the core library
25 lines
520 B
C#
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;
|
|
}
|
|
}
|