PkmnLibRSharp/PkmnLibRSharp/StaticData/Gender.cs

20 lines
385 B
C#

namespace PkmnLibSharp.StaticData
{
public enum Gender : byte
{
/// <summary>
/// The Pokemon has no gender.
/// </summary>
Genderless = 0,
/// <summary>
/// The Pokemon is male.
/// </summary>
Male = 1,
/// <summary>
/// The Pokemon is female.
/// </summary>
Female = 2,
}
}