PKHeX/PKHeX.Core/Legality/Structures/IGeneration.cs
Kurt 3f38b123a3 Refactoring
mostly renaming things, includes a little bit of added sugar and
splitting methods to simplify the codebase.

all methods are now PascalCase
2017-06-17 18:37:19 -07:00

7 lines
107 B
C#

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