PkmnLib.NET/PkmnLib.Static/Species/Gender.cs

21 lines
534 B
C#
Raw Normal View History

2024-07-20 14:12:39 +00:00
namespace PkmnLib.Static.Species;
2024-07-20 11:51:52 +00:00
/// <summary>
2024-07-20 14:12:39 +00:00
/// Gender is a Pokémon characteristic.
2024-07-20 11:51:52 +00:00
///
2024-07-20 14:12:39 +00:00
/// Required for standard Pokémon functions, but somewhat controversial nowadays. Consider adding a feature
2024-07-20 11:51:52 +00:00
/// that allows for a more progressive gender system for those that want it?
/// </summary>
public enum Gender : byte
{
2024-07-20 14:12:39 +00:00
/// The Pokémon has no gender.
2024-07-20 11:51:52 +00:00
Genderless,
/// <summary>
2024-07-20 14:12:39 +00:00
/// The Pokémon is male.
2024-07-20 11:51:52 +00:00
/// </summary>
Male,
/// <summary>
2024-07-20 14:12:39 +00:00
/// The Pokémon is female.
2024-07-20 11:51:52 +00:00
/// </summary>
2024-08-23 07:24:00 +00:00
Female,
2024-07-20 11:51:52 +00:00
}