PKHeX/PKHeX.Core/PKM/Shared/ISpeciesForm.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

8 lines
129 B
C#

namespace PKHeX.Core
{
public interface ISpeciesForm
{
int Species { get; }
int Form { get; }
}
}