#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 warrior class
/// </summary>
public class WarriorClass : Class
{
#region [rgn] Constructors (1)
/// <summary>
/// Initializes a new instance of the <see cref="WarriorClass"/> class.
/// </summary>
public WarriorClass()
: base("Warrior", 100)
{
Description = "Tough agile fighters and weapons experts.";
}
#endregion [rgn]
}
}