mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-08 00:01:45 -05:00
11 lines
210 B
C#
11 lines
210 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Interface that exposes a Generation value for the object.
|
|
/// </summary>
|
|
internal interface IGeneration
|
|
{
|
|
int Generation { get; }
|
|
}
|
|
}
|