#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>
    /// Implements a position type
    /// </summary>
    public enum Position
    {
        /// <summary>
        /// Dead
        /// </summary>
        Dead,
        /// <summary>
        /// Dying
        /// </summary>
        Dying,
        /// <summary>
        /// Stunned
        /// </summary>
        Stunned,
        /// <summary>
        /// Sleeping
        /// </summary>
        Sleeping,
        /// <summary>
        /// Resting
        /// </summary>
        Resting,
        /// <summary>
        /// Fighting
        /// </summary>
        Fighting,
        /// <summary>
        /// Standing
        /// </summary>
        Standing
    }
}