mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
10 lines
255 B
C#
10 lines
255 B
C#
using System;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
public sealed class UnionPokemon6(SAV6 sav, Memory<byte> raw) : SaveBlock<SAV6>(sav, raw)
|
|
{
|
|
private const int SizeStored = PokeCrypto.SIZE_6STORED;
|
|
|
|
public Memory<byte> this[int index] => Raw[..SizeStored];
|
|
}
|