mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
e1414a0bea
No code changes
13 lines
364 B
C#
13 lines
364 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Interface that exposes a <see cref="Generation"/> to see which canonical generation the data originated in.
|
|
/// </summary>
|
|
public interface IGeneration
|
|
{
|
|
/// <summary>
|
|
/// The canonical generation the data originated in.
|
|
/// </summary>
|
|
int Generation { get; }
|
|
}
|
|
}
|