mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 09:08:02 +00:00
62d08d7c30
split some methods with optional parameters=null add more xmldoc replace some magic numbers -> enum/const references consolidate common array operations (span soon maybe?)
16 lines
No EOL
493 B
C#
16 lines
No EOL
493 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 sealed class EncounterTradeCatchRate : EncounterTrade
|
|
{
|
|
/// <summary>
|
|
/// <see cref="PK1.Catch_Rate"/> value the encounter is found with.
|
|
/// </summary>
|
|
public uint Catch_Rate;
|
|
}
|
|
} |