2017-07-13 10:26:03 +02:00
|
|
|
/*
|
|
|
|
* launcherdirs.h, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
2013-08-22 17:22:49 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
/// similar to lib/VCMIDirs, controls where all launcher-related data will be stored
|
2024-02-06 00:33:47 +02:00
|
|
|
namespace CLauncherDirs
|
2013-08-22 17:22:49 +03:00
|
|
|
{
|
2024-02-06 00:33:47 +02:00
|
|
|
void prepare();
|
2013-08-22 17:22:49 +03:00
|
|
|
|
|
|
|
QString downloadsPath();
|
|
|
|
QString modsPath();
|
2023-12-25 19:53:02 +02:00
|
|
|
QString mapsPath();
|
2024-02-06 00:33:47 +02:00
|
|
|
}
|