InputAction.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //-----------------------------------------------------------------------------
  2. // InputAction.cs
  3. //
  4. // Microsoft XNA Community Game Platform
  5. // Copyright (C) Microsoft Corporation. All rights reserved.
  6. //-----------------------------------------------------------------------------
  7. namespace RolePlaying
  8. {
  9. public static partial class InputManager
  10. {
  11. /// <summary>
  12. /// The actions that are possible within the game.
  13. /// </summary>
  14. public enum InputAction
  15. {
  16. MainMenu,
  17. Ok,
  18. Back,
  19. CharacterManagement,
  20. ExitGame,
  21. TakeView,
  22. DropUnEquip,
  23. MoveCharacterUp,
  24. MoveCharacterDown,
  25. MoveCharacterLeft,
  26. MoveCharacterRight,
  27. CursorUp,
  28. CursorDown,
  29. DecreaseAmount,
  30. IncreaseAmount,
  31. PageLeft,
  32. PageRight,
  33. TargetUp,
  34. TargetDown,
  35. ActiveCharacterLeft,
  36. ActiveCharacterRight,
  37. TotalActionCount,
  38. }
  39. }
  40. }