Exemplo n.º 1
0
 public static Keys GetMappedKey(InputManager.ActionTypes type)
 {
     return(instance_.KeyboardMap[type]);
 }
Exemplo n.º 2
0
 public static void ChangeButtonMapping(InputManager.ActionTypes type, Buttons button)
 {
     instance_.ControllerMap[type] = button;
 }
Exemplo n.º 3
0
 public static Buttons GetMappedButton(InputManager.ActionTypes type)
 {
     return(instance_.ControllerMap[type]);
 }
Exemplo n.º 4
0
 public static void ChangeKeyMapping(InputManager.ActionTypes type, Keys key)
 {
     instance_.KeyboardMap[type] = key;
 }