mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 13:58:33 +00:00
7 lines
106 B
C#
7 lines
106 B
C#
namespace PKHeX.Core
|
|
{
|
|
internal interface IMoveset
|
|
{
|
|
int[] Moves { get; set; }
|
|
}
|
|
}
|