PKHeX/PKHeX.Core/Legality/RNG/PIDIV.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

20 lines
796 B
C#

namespace PKHeX.Core
{
public sealed class PIDIV
{
public static readonly PIDIV None = new PIDIV { NoSeed = true, Type = PIDType.None };
/// <summary> The RNG that generated the PKM from the <see cref="OriginSeed"/> </summary>
public RNGType RNG;
/// <summary> The RNG seed which immediately generates the PIDIV (starting with PID or IVs, whichever comes first). </summary>
public uint OriginSeed;
/// <summary> Indicates that there is no <see cref="OriginSeed"/> to refer to. </summary>
/// <remarks> Some PIDIVs may be generated without a single seed, but may follow a traceable pattern. </remarks>
public bool NoSeed;
/// <summary> Type of PIDIV correlation </summary>
public PIDType Type;
}
}