PKHeX/PKHeX.Core/Saves/Substructures/Gen6/GTS6.cs

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];
}