PKHeX/PKHeX.Core/Legality/Structures/IMoveset.cs

12 lines
211 B
C#
Raw Normal View History

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