mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 16:33:24 +00:00
78ff441e8b
rearrange some logic for clearer function (extract some methods)
9 lines
No EOL
253 B
C#
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;
|
|
}
|
|
} |