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