PKHeX/PKHeX.Core/Legality/Encounters/EncounterSlot/EncounterSlot5.cs
2020-08-30 11:08:21 -07:00

15 lines
375 B
C#

namespace PKHeX.Core
{
public sealed class EncounterSlot5 : EncounterSlot
{
public override int Generation => 5;
public EncounterSlot5(EncounterArea5 area, int species, int form, int min, int max) : base(area)
{
Species = species;
Form = form;
LevelMin = min;
LevelMax = max;
}
}
}