mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 00:58:01 +00:00
b670f525fb
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).
10 lines
No EOL
207 B
C#
10 lines
No EOL
207 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Table of Evolution Branch Entries
|
|
/// </summary>
|
|
public abstract class EvolutionSet
|
|
{
|
|
public EvolutionMethod[] PossibleEvolutions;
|
|
}
|
|
} |