mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-01 15:26:09 +00:00
20 lines
306 B
C++
20 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;
|
|
};
|