mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
62018cce1a
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.
7 lines
105 B
C#
7 lines
105 B
C#
namespace PKHeX.Core
|
|
{
|
|
public interface IGeneration
|
|
{
|
|
int Generation { get; }
|
|
}
|
|
}
|