mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
8312c52cc1
contract: don't modify the template movesets mystery gift now exposes IRelearn, remove unnecessary type checks
11 lines
No EOL
259 B
C#
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;
|
|
}
|
|
} |