mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-09 04:24:36 -05:00
9 lines
253 B
C#
9 lines
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;
|
|
}
|
|
} |