PrismLauncher/launcher/ui/themes/IconTheme.h
TheKodeToad 97662f5c8e Multiple icon themes!
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2023-07-18 22:51:34 +01:00

18 lines
267 B
C++

#pragma once
#include <QString>
class IconTheme {
public:
IconTheme(const QString& id, const QString& path);
bool load();
QString id();
QString path();
QString name();
private:
QString m_id;
QString m_path;
QString m_name;
};