culturered_client/TouchScreen/FileHelper.h
2024-09-07 11:34:44 +08:00

12 lines
309 B
C++

#pragma once
#include "Config.h"
class FileHelper {
public:
static QStringList GetAllMediaFiles(const QString& path, bool* success);
static bool GeneratJsonConfig();
static bool GetItemFromJsonConfig(Config* config);
static bool SaveItemToJsonConfig(Config* config);
static QString GetResoucePath();
};