mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-17 01:28:00 +00:00
78ff441e8b
rearrange some logic for clearer function (extract some methods)
15 lines
No EOL
512 B
C#
15 lines
No EOL
512 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Generation 1 Wild Encounter Slot data
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Contains Time data which is present in <see cref="GameVersion.C"/> origin data.
|
|
/// Contains <see cref="GameVersion"/> identification, as this Version value is not stored in <see cref="PK1"/> or <see cref="PK2"/> formats.
|
|
/// </remarks>
|
|
internal sealed class EncounterSlot1 : EncounterSlot
|
|
{
|
|
public int Rate;
|
|
internal EncounterTime Time;
|
|
}
|
|
} |