namespace PKHeX.Core { /// /// Interface that exposes a Generation value for the object. /// internal interface IGeneration { int Generation { get; set; } } }