PKHeX/PKHeX.Core/Legality/Structures/IGeneration.cs
Kurt 6164884700 Merge IGeneration into IEncounterable
all but egg exposed it; now, just make egg expose it and remove the unnecessary interface

we still need to Set generation for non-eggs/mgift, so have a separate Settable interface for internal purposes.
2020-05-17 12:32:28 -07:00

7 lines
110 B
C#

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