mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-24 19:33:10 +00:00
10 lines
200 B
C#
10 lines
200 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Trade Encounter data with a fixed PID.
|
|||
|
/// </summary>
|
|||
|
public class EncounterTradePID : EncounterTrade
|
|||
|
{
|
|||
|
public uint PID;
|
|||
|
}
|
|||
|
}
|