mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
12 lines
162 B
C#
12 lines
162 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
public enum Gender : byte
|
|||
|
{
|
|||
|
Male = 0,
|
|||
|
Female = 1,
|
|||
|
|
|||
|
Genderless = 2,
|
|||
|
Random = Genderless,
|
|||
|
}
|
|||
|
}
|