2018-12-30 18:00:05 +08:00
using StardewValley ;
2018-03-04 23:53:55 +08:00
namespace CustomNPCFramework.Framework.Enums
{
2018-12-30 18:00:05 +08:00
/// <summary>Gender enum to signify the different genders for NPCs. Do what you want with this. For code simplicity anything that is non-binary is specified under other.</summary>
2018-03-04 23:53:55 +08:00
public enum Genders
{
2018-12-30 18:00:05 +08:00
/// <summary>Used for npcs to signify that they are the male gender.</summary>
male = NPC . male ,
/// <summary>Used for npcs to signify that they are the female gender.</summary>
female = NPC . female ,
/// <summary>Used for npcs to signify that they are a non gender binary gender.</summary>
other = NPC . undefined
2018-03-04 23:53:55 +08:00
}
}