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

14 lines
343 B
C#

namespace PKHeX.Core
{
public sealed class EncounterSlot7b : EncounterSlot
{
public override int Generation => 7;
public EncounterSlot7b(EncounterArea7b area, int species, int min, int max) : base(area)
{
Species = species;
LevelMin = min;
LevelMax = max;
}
}
}