PKHeX/PKHeX.Core/PKM/Shared/IGeneration.cs
Kurt 62018cce1a Unify concepts with different names
AltForm & Form & Forme => Form
GenNumber & Generation => Generation

Extract out SpeciesForm interface, and re-add IGeneration

For those using PKHeX as a dependency, this should be a pretty straightforward manual replacement... GenNumber and AltForm should be quick find-replace`s.
2020-12-10 20:42:30 -08:00

7 lines
105 B
C#

namespace PKHeX.Core
{
public interface IGeneration
{
int Generation { get; }
}
}