mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
8b5e4e798b
Closes #3921 Not sure if the RTC handling is correct (always 0x20 length?) but at least we have a non-fixed-sized header handled with some leniency for different builds.
9 lines
315 B
C#
9 lines
315 B
C#
namespace PKHeX.Core;
|
|
|
|
public sealed class SaveHandlerSplitResult(byte[] Data, byte[] Header, byte[] Footer, ISaveHandler Handler)
|
|
{
|
|
public readonly byte[] Header = Header;
|
|
public readonly byte[] Footer = Footer;
|
|
public readonly byte[] Data = Data;
|
|
public readonly ISaveHandler Handler = Handler;
|
|
}
|