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