PkmnLib.NET/PkmnLib.Dynamic/GlobalUsings.cs
Deukhoofd 2533512eda
All checks were successful
Build / Build (push) Successful in 51s
Slight cleanup, do some TODOs
2025-06-22 10:42:25 +02:00

15 lines
315 B
C#

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