mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-19 00:43:14 +00:00
3f38b123a3
mostly renaming things, includes a little bit of added sugar and splitting methods to simplify the codebase. all methods are now PascalCase
7 lines
107 B
C#
7 lines
107 B
C#
namespace PKHeX.Core
|
|
{
|
|
internal interface IGeneration
|
|
{
|
|
int Generation { get; }
|
|
}
|
|
}
|