#region Arthea License
/***********************************************************************
*  Arthea MUD by R. Jennings (2007)      http://arthea.googlecode.com/ *
*  By using this code you comply with the Artistic and GPLv2 Licenses. *
***********************************************************************/
#endregion
namespace Arthea.Continents.Areas.Characters.Enums
{
    /// <summary>
    /// Types of sex
    /// </summary>
    public enum Sex
    {
        /// <summary>
        /// Male
        /// </summary>
        Male,
        /// <summary>
        /// Female
        /// </summary>
        Female,
        /// <summary>
        /// Both male and female
        /// </summary>
        Hermaphrodite,
        /// <summary>
        /// No sex
        /// </summary>
        None
    }
}