mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 08:23:12 +00:00
ab0b8979e9
placeholder content until real data is dumped
19 lines
No EOL
673 B
C#
19 lines
No EOL
673 B
C#
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
public abstract class RecordBlock : SaveBlock
|
|
{
|
|
protected abstract IReadOnlyList<byte> RecordMax { get; }
|
|
public abstract int GetRecord(int recordID);
|
|
public abstract void SetRecord(int recordID, int value);
|
|
|
|
public int GetRecordMax(int recordID) => Records.GetMax(recordID, RecordMax);
|
|
public int GetRecordOffset(int recordID) => Records.GetOffset(Offset, recordID);
|
|
public void AddRecord(int recordID, int count = 1) => SetRecord(recordID, GetRecord(recordID) + count);
|
|
|
|
protected RecordBlock(SaveFile sav) : base(sav)
|
|
{
|
|
}
|
|
}
|
|
} |