#region File Description //----------------------------------------------------------------------------- // Direction.cs // // Microsoft XNA Community Game Platform // Copyright (C) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- #endregion #region Using Statements using System; #endregion namespace RolePlayingGameData { /// /// Cardinal and ordinal directions, primary for sprite orientation. /// public enum Direction { North, NorthEast, East, SouthEast, South, SouthWest, West, NorthWest, } }