#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.Rooms.Enums
{
/// <summary>
/// Implements a direction
/// </summary>
public enum Direction
{
/// <summary>
/// North
/// </summary>
North,
/// <summary>
/// South
/// </summary>
South,
/// <summary>
/// East
/// </summary>
East,
/// <summary>
/// West
/// </summary>
West,
/// <summary>
/// Up
/// </summary>
Up,
/// <summary>
/// Down
/// </summary>
Down
}
}