#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 alignment type
/// </summary>
public enum Alignment
{
/// <summary>
/// Is good
/// </summary>
Good,
/// <summary>
/// Is neutral
/// </summary>
Neutral,
/// <summary>
/// Is evil
/// </summary>
Evil
}
}