mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 16:27:21 +00:00
99005d8fc0
more discards & simplifications
10 lines
195 B
C#
10 lines
195 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Interface that exposes a Moveset for the object.
|
|
/// </summary>
|
|
internal interface IMoveset
|
|
{
|
|
int[] Moves { get; }
|
|
}
|
|
}
|