PKHeX/PKHeX.Core/Legality/Structures/IMoveset.cs
Kurt 8312c52cc1 Make Move[] readonly list
contract: don't modify the template movesets
mystery gift now exposes IRelearn, remove unnecessary type checks
2020-01-18 16:46:38 -08:00

12 lines
243 B
C#

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