namespace PKHeX.Core { /// /// Interface that exposes a Moveset for the object. /// internal interface IMoveset { int[] Moves { get; } } }