PKHeX/PKHeX.Core/Legality/Evolutions/EvolutionSet.cs
Kurt b670f525fb Split up evolution classes
Too many classes in the same file, break up.

simplify things a little in EncounterArea (remove passing thru nulls,
should throw excpetion immediately if misconfigured).
2018-05-19 12:07:50 -07:00

10 lines
No EOL
207 B
C#

namespace PKHeX.Core
{
/// <summary>
/// Table of Evolution Branch Entries
/// </summary>
public abstract class EvolutionSet
{
public EvolutionMethod[] PossibleEvolutions;
}
}