mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-12 14:48:41 -05:00
12 lines
282 B
C#
12 lines
282 B
C#
namespace PKHeX.Core
|
|
{
|
|
public interface ITrainerStatRecord
|
|
{
|
|
int GetRecord(int recordID);
|
|
int GetRecordOffset(int recordID);
|
|
int GetRecordMax(int recordID);
|
|
void SetRecord(int recordID, int value);
|
|
int RecordCount { get; }
|
|
}
|
|
}
|