mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 00:58:01 +00:00
52c4fbbe97
Refactored and rearranged things as needed to allow the change
7 lines
106 B
C#
7 lines
106 B
C#
namespace PKHeX.Core
|
|
{
|
|
internal interface IMoveset
|
|
{
|
|
int[] Moves { get; set; }
|
|
}
|
|
}
|