PKHeX/PKHeX.Core/Legality/Structures/IGeneration.cs
Evan Dixon 52c4fbbe97 Converted PKHeX.Core to .Net Standard
Refactored and rearranged things as needed to allow the change
2017-05-11 23:34:18 -05:00

7 lines
112 B
C#

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