mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 09:08:02 +00:00
10 lines
207 B
C#
10 lines
207 B
C#
|
namespace PKHeX.Core
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Table of Evolution Branch Entries
|
||
|
/// </summary>
|
||
|
public abstract class EvolutionSet
|
||
|
{
|
||
|
public EvolutionMethod[] PossibleEvolutions;
|
||
|
}
|
||
|
}
|