mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
52c4fbbe97
Refactored and rearranged things as needed to allow the change
16 lines
471 B
C#
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;
|
|
}
|
|
}
|