#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.Classes;
using Arthea.Continents.Areas.Characters.Enums;
namespace Arthea.Races
{
/// <summary>
/// Implementation of a human race.
/// </summary>
public class HumanRace : PlayerRace
{
#region [rgn] Constructors (1)
/// <summary>
/// Initializes a new instance of the <see cref="HumanRace"/> class.
/// </summary>
public HumanRace() : base("human")
{
Description = "The most common race.";
FavouredClass = typeof (Class);
Size = Size.Medium;
}
#endregion [rgn]
}
}