mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-09 12:35:20 -05:00
8 lines
106 B
C#
8 lines
106 B
C#
namespace PKHeX.Core
|
|
{
|
|
internal interface IMoveset
|
|
{
|
|
int[] Moves { get; set; }
|
|
}
|
|
}
|