PKHeX/PKHeX.Core/Legality/Encounters/EncounterSlot3Swarm.cs
Kurt 8312c52cc1 Make Move[] readonly list
contract: don't modify the template movesets
mystery gift now exposes IRelearn, remove unnecessary type checks
2020-01-18 16:46:38 -08:00

11 lines
No EOL
259 B
C#

using System.Collections.Generic;
namespace PKHeX.Core
{
internal sealed class EncounterSlot3Swarm : EncounterSlot, IMoveset
{
public IReadOnlyList<int> Moves { get; }
public EncounterSlot3Swarm(int[] moves) => Moves = moves;
}
}