Example #1
0
 public InputHandler(Game game)
 {
     this.game = game;
     RegisterInputHandlers();
     Keys    = new KeyMap();
     picking = new PickingHandler(game, this);
     HotkeyList.LoadSavedHotkeys();
 }
 public InputHandler(Game game)
 {
     this.game = game;
     RegisterInputHandlers();
     Keys    = new KeyMap();
     Hotkeys = new HotkeyList();
     Hotkeys.LoadSavedHotkeys();
 }
Example #3
0
        public InputHandler(Game game)
        {
            this.game = game;
            RegisterInputHandlers();
            Keys    = new KeyMap();
            picking = new PickingHandler(game, this);

                        #if !ANDROID
            Hotkeys = new HotkeyList();
            Hotkeys.LoadSavedHotkeys();
                        #endif
        }