//----------------------------------------------------------------------------- // InputAction.cs // // Microsoft XNA Community Game Platform // Copyright (C) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace RolePlaying { public static partial class InputManager { /// /// The actions that are possible within the game. /// 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, } } }