mirror of
https://github.com/kwsch/pkNX.git
synced 2026-06-02 22:34:58 -05:00
Thanks @sora10pls for double checking some editors, and @Lusamine for some field identification. Closes #115 -- tested the pokedex after randomization and it no longer crashes when randomizing+saving with the latest code in this pull request. Adds: * Shop editor (SWSH + LGPE) * Move editor * Item editor * Symbol (Overworld Pokemon) Behavior editor * Default Rental team editor
7 lines
144 B
C#
7 lines
144 B
C#
namespace pkNX.Structures.FlatBuffers
|
|
{
|
|
public interface IFlatBufferArchive<T> where T : class
|
|
{
|
|
T[] Table { get; set; }
|
|
}
|
|
} |