launcherdirs.h 441 B

1234567891011121314151617181920
  1. /*
  2. * launcherdirs.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. /// similar to lib/VCMIDirs, controls where all launcher-related data will be stored
  12. namespace CLauncherDirs
  13. {
  14. void prepare();
  15. QString downloadsPath();
  16. QString modsPath();
  17. QString mapsPath();
  18. }