mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-01 15:26:09 +00:00
17 lines
242 B
C++
17 lines
242 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
class Path
|
|
{
|
|
public:
|
|
static QString getLogDir();
|
|
|
|
static QString getBoxArtCacheDir();
|
|
|
|
static void initialize(bool portable);
|
|
|
|
static QString s_LogDir;
|
|
static QString s_BoxArtCacheDir;
|
|
};
|