| 1234567891011121314151617181920212223242526 |
- #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";
- }
|