PKHeX/PKHeX.Core/Saves/Substructures/Gen7/SaveBlock.cs
Kurt e96ef76dcd Add xmldoc
no code changes
2019-02-09 20:24:38 -08:00

12 lines
No EOL
308 B
C#

namespace PKHeX.Core
{
/// <summary>
/// Base class for a savegame data reader.
/// </summary>
public abstract class SaveBlock
{
public int Offset { get; protected set; }
protected readonly byte[] Data;
protected SaveBlock(SaveFile SAV) => Data = SAV.Data;
}
}