PKHeX/PKHeX.Core/Legality/Encounters/EncounterTradeCatchRate.cs
Kurt 452ffe2369 Refactoring
relocate location of stuff
2018-03-08 21:18:32 -08:00

13 lines
No EOL
365 B
C#

namespace PKHeX.Core
{
/// <summary>
/// Trade Encounter data with a fixed Catch Rate
/// </summary>
/// <remarks>
/// Generation 1 specific value used in detecting unmodified/untraded Generation 1 Trade Encounter data.
/// </remarks>
public class EncounterTradeCatchRate : EncounterTrade
{
public uint Catch_Rate;
}
}