PKHeX/PKHeX.Core/Legality/Encounters/EncounterStaticPID.cs
Kurt 78ff441e8b Update iencounterable api with new criteria arg
rearrange some logic for clearer function (extract some methods)
2018-12-29 22:24:34 -08:00

9 lines
No EOL
253 B
C#

namespace PKHeX.Core
{
internal sealed class EncounterStaticPID : EncounterStatic
{
public uint PID { get; set; }
public bool NSparkle { get; set; }
public override Shiny Shiny { get; set; } = Shiny.FixedValue;
}
}