mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 13:03:06 +00:00
990eb73f8a
recordmax is simplified
11 lines
282 B
C#
11 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; }
|
|
}
|
|
}
|