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