using System.Collections.Generic; namespace PKHeX.Core { /// /// Interface that exposes a Moveset for the object. /// public interface IMoveset { IReadOnlyList Moves { get; } } }