mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
10 lines
237 B
C#
10 lines
237 B
C#
using System;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
public sealed class GTS6(SAV6 sav, Memory<byte> raw) : SaveBlock<SAV6>(sav, raw)
|
|
{
|
|
private const int SizeStored = PokeCrypto.SIZE_6STORED;
|
|
|
|
public Memory<byte> Upload => Raw[..SizeStored];
|
|
}
|