mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 09:08:02 +00:00
78ff441e8b
rearrange some logic for clearer function (extract some methods)
11 lines
No EOL
277 B
C#
11 lines
No EOL
277 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Trade Encounter data with a fixed PID.
|
|
/// </summary>
|
|
public sealed class EncounterTradePID : EncounterTrade
|
|
{
|
|
public uint PID;
|
|
public override Shiny Shiny { get; set; } = Shiny.FixedValue;
|
|
}
|
|
} |