mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
8312c52cc1
contract: don't modify the template movesets mystery gift now exposes IRelearn, remove unnecessary type checks
12 lines
243 B
C#
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; }
|
|
}
|
|
}
|