19 lines
396 B
C#
19 lines
396 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace CustomNPCFramework.Framework.Enums
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Do what you want with this. For code simplicity anything that is non-binary is specified under other.
|
|||
|
/// </summary>
|
|||
|
public enum Genders
|
|||
|
{
|
|||
|
male,
|
|||
|
female,
|
|||
|
other
|
|||
|
}
|
|||
|
}
|