PkmnLibSharp/PkmnLibSharp/Library/Statistic.cs

12 lines
213 B
C#

namespace PkmnLibSharp.Library
{
public enum Statistic : byte
{
Health = 0,
Attack = 1,
Defense = 2,
SpecialAttack = 3,
SpecialDefense = 4,
Speed = 5
}
}