#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.Continents.Areas.Characters.Enums
{
/// <summary>
/// A size type
/// </summary>
public enum Size
{
/// <summary>
/// very very tiny
/// </summary>
Minuscule,
/// <summary>
/// tiny
/// </summary>
Tiny,
/// <summary>
/// small
/// </summary>
Small,
/// <summary>
/// average
/// </summary>
Medium,
/// <summary>
/// large
/// </summary>
Large,
/// <summary>
/// huge
/// </summary>
Huge,
/// <summary>
/// giant
/// </summary>
Giant
}
}