summaryrefslogtreecommitdiffstats
path: root/logic/ForgeInstaller.h
diff options
context:
space:
mode:
Diffstat (limited to 'logic/ForgeInstaller.h')
-rw-r--r--logic/ForgeInstaller.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/logic/ForgeInstaller.h b/logic/ForgeInstaller.h
index 6490b5bf..eb8ecd79 100644
--- a/logic/ForgeInstaller.h
+++ b/logic/ForgeInstaller.h
@@ -20,20 +20,20 @@
#include <QString>
#include <memory>
-class DerpVersion;
+class OneSixVersion;
class ForgeInstaller : public BaseInstaller
{
public:
ForgeInstaller(QString filename, QString universal_url);
- bool add(DerpInstance *to) override;
+ bool add(OneSixInstance *to) override;
QString id() const override { return "net.minecraftforge"; }
private:
// the version, read from the installer
- std::shared_ptr<DerpVersion> m_forge_version;
+ std::shared_ptr<OneSixVersion> m_forge_version;
QString internalPath;
QString finalPath;
QString realVersionId;