PkmnLib.NET/PkmnLib.Dynamic/GlobalUsings.cs

14 lines
279 B
C#
Raw Normal View History

2024-07-27 14:26:45 +00:00
global using LevelInt = byte;
namespace PkmnLib.Dynamic;
/// <summary>
/// Constants used in the dynamic library.
/// </summary>
2024-07-27 14:26:45 +00:00
public class Const
{
/// <summary>
/// The max number of moves a Pokemon can have.
/// </summary>
2024-07-27 14:26:45 +00:00
public const int MovesCount = 4;
}