mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 00:58:01 +00:00
e96ef76dcd
no code changes
26 lines
690 B
C#
26 lines
690 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Structure containing the Mystery Gift Data
|
|
/// </summary>
|
|
public class MysteryGiftAlbum
|
|
{
|
|
/// <summary>
|
|
/// Mystery Gift data received
|
|
/// </summary>
|
|
public MysteryGift[] Gifts;
|
|
|
|
/// <summary>
|
|
/// Received Flag list
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// this[index] == true iff index=<see cref="MysteryGift.CardID"/> has been received already.
|
|
/// </remarks>
|
|
public bool[] Flags;
|
|
|
|
/// <summary>
|
|
/// Encryption Seed (only used in Generation 4 to encrypt the stored data)
|
|
/// </summary>
|
|
public uint Seed;
|
|
}
|
|
}
|