PrismLauncher/launcher/tools/MCEditTool.h
Octol1ttle 549405ab2f
refactor!!!: migrate from shared pointers
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
2026-01-11 21:00:03 +05:00

16 lines
337 B
C++

#pragma once
#include <QString>
#include "settings/SettingsObject.h"
class MCEditTool {
public:
MCEditTool(SettingsObject* settings);
void setPath(QString& path);
QString path() const;
bool check(const QString& toolPath, QString& error);
QString getProgramPath();
private:
SettingsObject* m_settings;
};