PKHeX/PKHeX.Core/Saves/Substructures/MysteryGiftAlbum.cs

27 lines
690 B
C#
Raw Normal View History

2018-07-29 21:04:16 +00:00
namespace PKHeX.Core
{
/// <summary>
2019-02-10 04:24:38 +00:00
/// Structure containing the Mystery Gift Data
2018-07-29 21:04:16 +00:00
/// </summary>
public class MysteryGiftAlbum
{
2019-02-10 04:24:38 +00:00
/// <summary>
/// Mystery Gift data received
/// </summary>
2018-07-29 21:04:16 +00:00
public MysteryGift[] Gifts;
2019-02-10 04:24:38 +00:00
/// <summary>
/// Received Flag list
/// </summary>
/// <remarks>
/// this[index] == true iff index=<see cref="MysteryGift.CardID"/> has been received already.
/// </remarks>
2018-07-29 21:04:16 +00:00
public bool[] Flags;
2019-02-10 04:24:38 +00:00
/// <summary>
/// Encryption Seed (only used in Generation 4 to encrypt the stored data)
/// </summary>
2018-07-29 21:04:16 +00:00
public uint Seed;
}
}