#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.Classes
{
/// <summary>
/// Implements a magician class
/// </summary>
public class MagicianClass : Class
{
#region [rgn] Constructors (1)
/// <summary>
/// Initializes a new instance of the <see cref="MagicianClass"/> class.
/// </summary>
public MagicianClass()
: base("Magician", 75)
{
Description = "Masters of spell casting.";
}
#endregion [rgn]
}
}