Exemplo n.º 1
0
 public InputChordAction(string name, IList <InputKey> keys, int button)
 {
     _name  = name;
     _chord = InputManager.CreateKeyChord(keys, button);
 }
Exemplo n.º 2
0
 public InputChordAction(string name, IList <int> buttons)
 {
     _name  = name;
     _chord = InputManager.CreateKeyChord(buttons);
 }
Exemplo n.º 3
0
 public InputChordAction(string name, InputKey key)
 {
     _name  = name;
     _chord = InputManager.CreateKeyChord(key);
 }
Exemplo n.º 4
0
 public InputChordAction(string name, int button)
 {
     _name  = name;
     _chord = InputManager.CreateKeyChord(button);
 }
Exemplo n.º 5
0
 public static void UnregisterKeyChord(InputKeyChord chord)
 {
     instance.InternalUnregisterKeyChord((KeyChord)chord);
 }