mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-06 05:27:14 -05:00
11 lines
195 B
C#
11 lines
195 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Interface that exposes a Moveset for the object.
|
|
/// </summary>
|
|
internal interface IMoveset
|
|
{
|
|
int[] Moves { get; }
|
|
}
|
|
}
|