mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-20 20:58:30 -05:00
15 lines
370 B
C#
15 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; }
|
|
}
|
|
}
|