Esempio n. 1
0
 protected KeyBinding(int modCode, int keyCode, KeyCommand command) : base(keyCode)
 {
     this.command = command;
     type         = new ModdedKeyMatch(keyCode, modCode);
 }
Esempio n. 2
0
 protected KeyBinding(int keyCode, KeyCommand command) : base(keyCode)
 {
     this.command = command;
     type         = new SingleKeyMatch(keyCode);
 }