PrismLauncher/launcher/tools/MCEditTool.h
Octol1ttle e89ce1124a
refactor!!!: migrate from shared pointers
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
(cherry picked from commit 549405ab2f)
2026-02-17 20:23:05 +02: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;
};