added a new hotkey to select all units on screen

closes #4182
This commit is contained in:
Matthias Mailänder
2013-12-06 09:07:51 +01:00
parent f7eb6a29d5
commit 08166c0a64
4 changed files with 9 additions and 0 deletions

View File

@@ -149,6 +149,7 @@ namespace OpenRA.GameRules
public Hotkey ToLastEventKey = new Hotkey(Keycode.SPACE, Modifiers.None);
public Hotkey ToSelectionKey = new Hotkey(Keycode.HOME, Modifiers.None);
public Hotkey ToggleStatusBarsKey = new Hotkey(Keycode.INSERT, Modifiers.None);
public Hotkey SelectAllUnitsKey = new Hotkey(Keycode.A, Modifiers.Ctrl);
public Hotkey PauseKey = new Hotkey(Keycode.F9, Modifiers.None);
public Hotkey SellKey = new Hotkey(Keycode.F10, Modifiers.None);