#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.Connections.Players.Enums
{
/// <summary>
/// Implements a stat type
/// </summary>
public enum Stat
{
/// <summary>
/// Strength
/// </summary>
Strength,
/// <summary>
/// Intelligence
/// </summary>
Intelligence,
/// <summary>
/// Wisdom
/// </summary>
Wisdom,
/// <summary>
/// Dexterity
/// </summary>
Dexterity,
/// <summary>
/// Constitution
/// </summary>
Constitution,
/// <summary>
/// Charisma
/// </summary>
Charisma
}
}