123456789101112131415161718192021222324252627282930 |
- #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
- {
- /// <summary>
- /// Cardinal and ordinal directions, primary for sprite orientation.
- /// </summary>
- public enum Direction
- {
- North,
- NorthEast,
- East,
- SouthEast,
- South,
- SouthWest,
- West,
- NorthWest,
- }
- }
|