Allowing keypad enter to be used along with normal enter

This commit is contained in:
Scotsoo 2018-11-13 17:09:28 +00:00
parent 302196e985
commit 4dab5db2e5
1 changed files with 1 additions and 0 deletions

View File

@ -43,6 +43,7 @@ public GlobalActionContainer(OsuGameBase game)
new KeyBinding(InputKey.Space, GlobalAction.Select),
new KeyBinding(InputKey.Enter, GlobalAction.Select),
new KeyBinding(InputKey.KeypadEnter, GlobalAction.Select),
};
public IEnumerable<KeyBinding> InGameKeyBindings => new[]