PKHeX/PKHeX.Core/Legality/Encounters/EncounterSlotMoves.cs
Kurt 78ff441e8b Update iencounterable api with new criteria arg
rearrange some logic for clearer function (extract some methods)
2018-12-29 22:24:34 -08:00

7 lines
No EOL
148 B
C#

namespace PKHeX.Core
{
internal sealed class EncounterSlotMoves : EncounterSlot, IMoveset
{
public int[] Moves { get; set; }
}
}