mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 16:33:24 +00:00
ce5897ff94
Restrict some setters to protected only
14 lines
343 B
C#
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;
|
|
}
|
|
}
|
|
}
|