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