Advertisement
TheMisticogamer

Untitled

Jan 6th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. /*
  2. All code and updates available on Github : https://github.com/AmauryD/A3GPS
  3. */
  4.  
  5. #include "macros.h"
  6. #include "menu\common.hpp"
  7. #include "menu\menu.hpp"
  8. #include "misc\keyChoice\keyChoice.hpp"
  9. #include "misc\text_dialog.hpp"
  10. #include "localization.hpp"
  11.  
  12. #define false 0
  13. #define true 1
  14.  
  15. class CfgGPS {
  16. //global
  17. gps_dir = "A3GPS\"; // don't forget to add a backslash at the end of the path
  18.  
  19. //default user options
  20. default_marker_color = "ColorGreen";
  21. default_language = "fr";
  22.  
  23. //quicknav
  24. // see https://community.bistudio.com/wiki/DIK_KeyCodes for the keys number
  25. default_keyHandling_enable = true; //usefull when you want to implement in your own keyHandling file
  26. default_quicknav_open_key = 15;
  27. default_quicknav_switch_key = 54;
  28. default_quicknav_execute_key = 28;
  29. };
  30.  
  31. // might cause some errors if RscTitles is already defined , in this case put the includes in your other RscTitles class
  32. class RscTitles
  33. {
  34. #include "menu\hud.hpp"
  35. #include "menu\quickNav.hpp"
  36. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement