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

13 lines
243 B
C#
Raw Normal View History

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