mirror of
https://github.com/kwsch/pkNX.git
synced 2026-07-10 06:24:31 -05:00
11 lines
135 B
C#
11 lines
135 B
C#
namespace pkNX.Structures;
|
|
|
|
public enum FixedGender : byte
|
|
{
|
|
Random = 0,
|
|
Male = 1,
|
|
Female = 2,
|
|
|
|
Genderless = Random,
|
|
}
|