Further work on static side
This commit is contained in:
@@ -1,21 +1,21 @@
|
||||
namespace PkmnLib.Static;
|
||||
namespace PkmnLib.Static.Species;
|
||||
|
||||
/// <summary>
|
||||
/// Gender is a Pokemon characteristic.
|
||||
/// Gender is a Pokémon characteristic.
|
||||
///
|
||||
/// Required for standard pokemon functions, but somewhat controversial nowadays. Consider adding a feature
|
||||
/// Required for standard Pokémon 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
|
||||
{
|
||||
/// The Pokemon has no gender.
|
||||
/// The Pokémon has no gender.
|
||||
Genderless,
|
||||
/// <summary>
|
||||
/// The Pokemon is male.
|
||||
/// The Pokémon is male.
|
||||
/// </summary>
|
||||
Male,
|
||||
/// <summary>
|
||||
/// The Pokemon is female.
|
||||
/// The Pokémon is female.
|
||||
/// </summary>
|
||||
Female
|
||||
}
|
||||
Reference in New Issue
Block a user