mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 17:18:00 +00:00
7 lines
141 B
C#
7 lines
141 B
C#
|
namespace PKHeX.Core
|
||
|
{
|
||
|
internal class EncounterSlotMoves : EncounterSlot, IMoveset
|
||
|
{
|
||
|
public int[] Moves { get; set; }
|
||
|
}
|
||
|
}
|