culturered_client/TouchScreen/FileHelper.h

12 lines
309 B
C
Raw Normal View History

2024-09-07 03:34:44 +00:00
#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();
};