Adds selecting of all units matching the current type across the screen or map using Ctrl + T.

This commit is contained in:
Pizzaoverhead
2014-02-19 17:52:04 +00:00
parent 3ed2053d4a
commit 7be3078115
4 changed files with 22 additions and 1 deletions

View File

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