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