mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
ce5897ff94
Restrict some setters to protected only
16 lines
No EOL
417 B
C#
16 lines
No EOL
417 B
C#
namespace PKHeX.Core
|
|
{
|
|
public sealed class EncounterSlot7 : EncounterSlot
|
|
{
|
|
public EncounterSlot7(EncounterArea7 area, int species, int form, int min, int max) : base(area)
|
|
{
|
|
Species = species;
|
|
Form = form;
|
|
LevelMin = min;
|
|
LevelMax = max;
|
|
}
|
|
|
|
public override int Generation => 7;
|
|
public bool Pressure { get; set; }
|
|
}
|
|
} |