mirror of
https://github.com/kwsch/NHSE.git
synced 2026-05-20 17:28:11 -05:00
10 lines
138 B
C#
10 lines
138 B
C#
namespace NHSE.Core;
|
|
|
|
/// <summary>
|
|
/// Player gender toggle
|
|
/// </summary>
|
|
public enum Gender
|
|
{
|
|
Masculine = 0,
|
|
Feminine = 1,
|
|
} |