PKHeX/PKHeX.Core/Legality/Structures/ValidEncounterMoves.cs
Evan Dixon 52c4fbbe97 Converted PKHeX.Core to .Net Standard
Refactored and rearranged things as needed to allow the change
2017-05-11 23:34:18 -05:00

15 lines
453 B
C#

using System.Collections.Generic;
using System.Linq;
namespace PKHeX.Core
{
public class ValidEncounterMoves
{
public int EncounterSpecies { get; set; }
public DexLevel[][] EvolutionChains { get; set; }
public List<int>[] validLevelUpMoves { get; set; }
public List<int>[] validTMHMMoves { get; set; }
public List<int>[] validTutorMoves { get; set; }
public int minLvlG1 { get; set; }
}
}