PKHeX/PKHeX.Core/PKM/Shared/IGameValueLimit.cs
Kurt f25b36a306 Minor tweaks
Remove unused stuff
add some comments/xmldoc
Move Trainer1 to classes that use it
2019-11-28 14:00:55 -08:00

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; }
}
}