mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
f25b36a306
Remove unused stuff add some comments/xmldoc Move Trainer1 to classes that use it
20 lines
533 B
C#
20 lines
533 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Metadata indicating the maximums (and minimums) a type of value can be.
|
|
/// </summary>
|
|
public interface IGameValueLimit
|
|
{
|
|
int MaxMoveID { get; }
|
|
int MaxSpeciesID { get; }
|
|
int MaxItemID { get; }
|
|
int MaxAbilityID { get; }
|
|
int MaxBallID { get; }
|
|
int MaxGameID { get; }
|
|
int MinGameID { get; }
|
|
int MaxIV { get; }
|
|
int MaxEV { get; }
|
|
int OTLength { get; }
|
|
int NickLength { get; }
|
|
}
|
|
}
|