using StardewValley;
namespace CustomNPCFramework.Framework.Enums
{
/// 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.
public enum Genders
{
/// Used for npcs to signify that they are the male gender.
male = NPC.male,
/// Used for npcs to signify that they are the female gender.
female = NPC.female,
/// Used for npcs to signify that they are a non gender binary gender.
other = NPC.undefined
}
}