| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //-----------------------------------------------------------------------------
- // InputAction.cs
- //
- // Microsoft XNA Community Game Platform
- // Copyright (C) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
- namespace RolePlaying
- {
- public static partial class InputManager
- {
- /// <summary>
- /// The actions that are possible within the game.
- /// </summary>
- public enum InputAction
- {
- MainMenu,
- Ok,
- Back,
- CharacterManagement,
- ExitGame,
- TakeView,
- DropUnEquip,
- MoveCharacterUp,
- MoveCharacterDown,
- MoveCharacterLeft,
- MoveCharacterRight,
- CursorUp,
- CursorDown,
- DecreaseAmount,
- IncreaseAmount,
- PageLeft,
- PageRight,
- TargetUp,
- TargetDown,
- ActiveCharacterLeft,
- ActiveCharacterRight,
- TotalActionCount,
- }
- }
- }
|