#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
using Arthea.Clans.Enums;
namespace Arthea.Clans
{
    /// <summary>
    /// The Lythran Clan
    /// </summary>
    public class LythranClan : Clan
    {
        #region [rgn] Constructors (1)
        /// <summary>
        /// Initializes a new instance of the <see cref="LythranClan"/> class.
        /// </summary>
        public LythranClan()
            : base("Lythran", Ethos.Neutral, Alignment.Evil)
        {
        }
        #endregion [rgn]
    }
}