mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
6980026ca2
Continue crawling down the serialized savedata structure :)
14 lines
370 B
C#
14 lines
370 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Provides an API for fluent record editors.
|
|
/// </summary>
|
|
public interface ITrainerStatRecord
|
|
{
|
|
int GetRecord(int recordID);
|
|
int GetRecordOffset(int recordID);
|
|
int GetRecordMax(int recordID);
|
|
void SetRecord(int recordID, int value);
|
|
int RecordCount { get; }
|
|
}
|
|
}
|