mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
9718d1d2aa
GCI, DSV, DUC are already supported, so I've written the abstraction for those and seed the Handler list on startup. Can add a new class with recognition via SaveUtil.Handlers.Add(myHandler);
16 lines
387 B
C#
16 lines
387 B
C#
namespace PKHeX.Core
|
|
{
|
|
public sealed class SaveHandlerSplitResult
|
|
{
|
|
public readonly byte[] Header;
|
|
public readonly byte[] Footer;
|
|
public readonly byte[] Data;
|
|
|
|
public SaveHandlerSplitResult(byte[] data, byte[] header, byte[] footer)
|
|
{
|
|
Data = data;
|
|
Header = header;
|
|
Footer = footer;
|
|
}
|
|
}
|
|
}
|