#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.Clans.Enums
{
/// <summary>
/// Implements an ethos type
/// </summary>
public enum Ethos
{
/// <summary>
/// Is lawfull
/// </summary>
Lawful,
/// <summary>
/// Is neutral
/// </summary>
Neutral,
/// <summary>
/// Is chaotic
/// </summary>
Chaotic
}
}