PkmnLibRSharp/PkmnLibRSharp/StaticData/Gender.cs

26 lines
667 B
C#

namespace PkmnLibSharp.StaticData
{
/// <summary>
/// Gender is a Pokemon characteristic.
///
/// Required for standard pokemon functions, but somewhat controversial nowadays. Consider adding a feature
/// that allows for a more progressive gender system for those that want it?
/// </summary>
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,
}
}