mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-20 12:48:30 -05:00
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.
8 lines
110 B
C#
8 lines
110 B
C#
namespace PKHeX.Core
|
|
{
|
|
internal interface IGenerationSet
|
|
{
|
|
int Generation { set; }
|
|
}
|
|
}
|