PkmnLibSharp/PkmnLibSharp/Generated/Pkmnlib/MoveCategory.cs

13 lines
230 B
C#
Raw Normal View History

2020-05-02 17:54:07 +00:00
using System.Diagnostics.CodeAnalysis;
namespace Pkmnlib
{
[SuppressMessage("ReSharper", "InconsistentNaming")]
public enum MoveCategory : byte
{
Physical = 0,
Special = 1,
Status = 2,
}
}