PKHeX/PKHeX.Core/Saves/Substructures/MysteryGiftAlbum.cs
Kurt 5d3bc289b6 seal hunting
Mark things as sealed as they shouldn't be inherited from or overriden in a derived class.
2020-09-07 13:51:13 -07:00

37 lines
1.1 KiB
C#

namespace PKHeX.Core
{
/// <summary>
/// Structure containing the Mystery Gift Data
/// </summary>
public class MysteryGiftAlbum
{
/// <summary>
/// Mystery Gift data received
/// </summary>
public readonly DataMysteryGift[] Gifts;
/// <summary>
/// Received Flag list
/// </summary>
/// <remarks>
/// this[index] == true iff index=<see cref="MysteryGift.CardID"/> has been received already.
/// </remarks>
public readonly bool[] Flags;
public MysteryGiftAlbum(DataMysteryGift[] gifts, bool[] flags)
{
Flags = flags;
Gifts = gifts;
}
}
public sealed class EncryptedMysteryGiftAlbum : MysteryGiftAlbum
{
/// <summary>
/// Encryption Seed (only used in Generation 5 to encrypt the stored data)
/// </summary>
public readonly uint Seed;
public EncryptedMysteryGiftAlbum(DataMysteryGift[] gifts, bool[] flags, uint seed) : base(gifts, flags) => Seed = seed;
}
}