PKHeX/PKHeX.Core/PKM/Shared/IGeneration.cs
Kurt 2f078e6565 Minor tweaks
Make HP IV set use single array fetch, less memory required
add some xmldoc
2021-04-20 01:02:32 -07:00

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; }
}
}