mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-05 21:17:14 -05:00
contract: don't modify the template movesets mystery gift now exposes IRelearn, remove unnecessary type checks
13 lines
243 B
C#
13 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; }
|
|
}
|
|
}
|