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