mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-02 09:02:03 +02:00
27 lines
500 B
C++
27 lines
500 B
C++
#include "StdInc.h"
|
|
#include "launcherdirs.h"
|
|
|
|
#include "../lib/VCMIDirs.h"
|
|
|
|
static CLauncherDirs launcherDirsGlobal;
|
|
|
|
CLauncherDirs::CLauncherDirs()
|
|
{
|
|
QDir().mkdir(downloadsPath());
|
|
}
|
|
|
|
CLauncherDirs & CLauncherDirs::get()
|
|
{
|
|
return launcherDirsGlobal;
|
|
}
|
|
|
|
QString CLauncherDirs::downloadsPath()
|
|
{
|
|
return QString::fromUtf8(VCMIDirs::get().userCachePath().c_str()) + "/downloads";
|
|
}
|
|
|
|
QString CLauncherDirs::modsPath()
|
|
{
|
|
return QString::fromUtf8(VCMIDirs::get().userCachePath().c_str()) + "/Mods";
|
|
}
|