GameControllerShortcuts.h 517 B

12345678910111213141516171819
  1. /*
  2. * GameControllerShortcuts.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #pragma once
  11. #include "../gui/Shortcut.h"
  12. using ButtonShortcutsMap = std::map<int, std::vector<EShortcut> >;
  13. using TriggerShortcutsMap = std::map<int, std::vector<EShortcut> >;
  14. const ButtonShortcutsMap & getButtonShortcutsMap();
  15. const TriggerShortcutsMap & getTriggerShortcutsMap();