mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
17 lines
387 B
C#
17 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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|