mirror of
https://github.com/kwsch/PKHeX
synced 2025-01-25 02:35:05 +00:00
8 lines
112 B
C#
8 lines
112 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
internal interface IGeneration
|
|||
|
{
|
|||
|
int Generation { get; set; }
|
|||
|
}
|
|||
|
}
|