global using LevelInt = byte;
global using JetBrains.Annotations;
namespace PkmnLib.Dynamic;
///
/// Constants used in the dynamic library.
///
public class Const
{
///
/// The max number of moves a Pokemon can have.
///
public const int MovesCount = 4;
}