mirror of
https://github.com/kwsch/PKHeX
synced 2025-01-02 23:58:47 +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; }
|
||
|
}
|
||
|
}
|