PKHeX/PKHeX.Core/Saves/Substructures/Gen7/SaveBlock.cs

9 lines
No EOL
224 B
C#

namespace PKHeX.Core
{
public abstract class SaveBlock
{
public int Offset { get; protected set; }
protected readonly byte[] Data;
protected SaveBlock(SaveFile SAV) => Data = SAV.Data;
}
}