mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-05 20:35:23 -05:00
13 lines
239 B
C#
13 lines
239 B
C#
using System;
|
|
|
|
namespace pkNX.Structures;
|
|
|
|
/// <summary>
|
|
/// Table of Evolution Branch Entries
|
|
/// </summary>
|
|
public abstract class EvolutionSet
|
|
{
|
|
public EvolutionMethod[] PossibleEvolutions = [];
|
|
public abstract byte[] Write();
|
|
}
|