PKHeX/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic7b.cs
Kurt 5a391bc20c Make EncounterStatic abstract, make Generation property abstract
Merge EncounterGift8 with EncounterStatic8 since there isn't much need to have two separate classes
2020-08-30 16:10:24 -07:00

7 lines
145 B
C#

namespace PKHeX.Core
{
public sealed class EncounterStatic7b : EncounterStatic
{
public override int Generation => 7;
}
}