mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-24 14:38:33 -05:00
mostly renaming things, includes a little bit of added sugar and splitting methods to simplify the codebase. all methods are now PascalCase
8 lines
107 B
C#
8 lines
107 B
C#
namespace PKHeX.Core
|
|
{
|
|
internal interface IGeneration
|
|
{
|
|
int Generation { get; }
|
|
}
|
|
}
|