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

13 lines
241 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; }
}
}