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