2018-03-09 05:18:32 +00:00
|
|
|
|
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>
|
2018-12-30 06:24:34 +00:00
|
|
|
|
internal sealed class EncounterSlot1 : EncounterSlot
|
2018-03-09 05:18:32 +00:00
|
|
|
|
{
|
|
|
|
|
public int Rate;
|
2018-05-12 19:28:48 +00:00
|
|
|
|
internal EncounterTime Time;
|
2018-03-09 05:18:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|