mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
cc8ac7a4f1
fixed dat .editorconfig in vs22 Catching general exceptions is okay because this program handles user modified data that can potentially be corrupt.
15 lines
342 B
C#
15 lines
342 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Gender a <see cref="PKM"/> can have
|
|
/// </summary>
|
|
/// <remarks><see cref="Random"/> provided to function for Encounter template values</remarks>
|
|
public enum Gender : byte
|
|
{
|
|
Male = 0,
|
|
Female = 1,
|
|
|
|
Genderless = 2,
|
|
Random = Genderless,
|
|
}
|
|
}
|