namespace PKHeX.Core { /// /// Structure containing the Mystery Gift Data /// public class MysteryGiftAlbum { /// /// Mystery Gift data received /// public MysteryGift[] Gifts; /// /// Received Flag list /// /// /// this[index] == true iff index= has been received already. /// public bool[] Flags; /// /// Encryption Seed (only used in Generation 4 to encrypt the stored data) /// public uint Seed; } }