mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-18 22:47:24 -05:00
tried to split off some grid stuff because rooms don't need to know about acres; whatever
12 lines
173 B
C#
12 lines
173 B
C#
namespace NHSE.Core
|
|
{
|
|
/// <summary>
|
|
/// Player gender toggle
|
|
/// </summary>
|
|
public enum Gender
|
|
{
|
|
Masculine = 0,
|
|
Feminine = 1,
|
|
}
|
|
}
|