Skip to content

Commit

Permalink
Merge pull request #78 from Nippo4512/master
Browse files Browse the repository at this point in the history
More Key Binds
  • Loading branch information
jaburns committed Jan 27, 2021
2 parents 6fc9b53 + db7da7d commit 9aff6bf
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion Keybindings.cs
Expand Up @@ -166,7 +166,18 @@ static ushort readKeybinding (string name)
{ "SUBTRACT", vkConvert (Key.Subtract) },
{ "-", vkConvert (Key.Subtract) },
{ "DIVIDE", vkConvert (Key.Divide) },
{ "/", vkConvert (Key.Divide) }
{ "/", vkConvert (Key.Divide) },
{ "SPACE", vkConvert (Key.Space) },
{ "LEFTSHIFT", vkConvert (Key.LeftShift) },
{ "RIGHTSHIFT", vkConvert (Key.RightShift) },
{ "LEFTCTRL", vkConvert (Key.LeftCtrl) },
{ "RIGHTCTRL", vkConvert (Key.RightCtrl) },
{ "LEFTALT", vkConvert (Key.LeftAlt) },
{ "RIGHTALT", vkConvert (Key.RightAlt) },
{ "UP", vkConvert (Key.Up) },
{ "DOWN", vkConvert (Key.Down) },
{ "LEFT", vkConvert (Key.Left) },
{ "RIGHT", vkConvert (Key.Right) }
};
}
}

0 comments on commit 9aff6bf

Please sign in to comment.