mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-13 23:17:09 +00:00
19 lines
306 B
C++
19 lines
306 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
class Path
|
|
{
|
|
public:
|
|
static QString getLogDir();
|
|
|
|
static QString getBoxArtCacheDir();
|
|
|
|
static QString getDataFilePath(QString fileName);
|
|
|
|
static void initialize(bool portable);
|
|
|
|
private:
|
|
static QString s_LogDir;
|
|
static QString s_BoxArtCacheDir;
|
|
};
|