PKHeX/PKHeX.Core/Legality/RNG/PIDIV.cs
Evan Dixon 52c4fbbe97 Converted PKHeX.Core to .Net Standard
Refactored and rearranged things as needed to allow the change
2017-05-11 23:34:18 -05:00

16 lines
471 B
C#

namespace PKHeX.Core
{
public class PIDIV
{
/// <summary> The RNG that generated the PKM from the <see cref="OriginSeed"/> </summary>
public RNG RNG;
/// <summary> The RNG seed which immediately generates the PIDIV (starting with PID or IVs, whichever comes first). </summary>
public uint OriginSeed;
public bool NoSeed;
/// <summary> Type of PIDIV correlation </summary>
public PIDType Type;
}
}