Direction.cs 715 B

123456789101112131415161718192021222324252627282930
  1. #region File Description
  2. //-----------------------------------------------------------------------------
  3. // Direction.cs
  4. //
  5. // Microsoft XNA Community Game Platform
  6. // Copyright (C) Microsoft Corporation. All rights reserved.
  7. //-----------------------------------------------------------------------------
  8. #endregion
  9. #region Using Statements
  10. using System;
  11. #endregion
  12. namespace RolePlayingGameData
  13. {
  14. /// <summary>
  15. /// Cardinal and ordinal directions, primary for sprite orientation.
  16. /// </summary>
  17. public enum Direction
  18. {
  19. North,
  20. NorthEast,
  21. East,
  22. SouthEast,
  23. South,
  24. SouthWest,
  25. West,
  26. NorthWest,
  27. }
  28. }