mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
ce5897ff94
Restrict some setters to protected only
15 lines
375 B
C#
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;
|
|
}
|
|
}
|
|
}
|