From ba3cbb7330fd3435423eb3a77373ca82d65681d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Wed, 20 Sep 2017 23:38:31 +0200 Subject: NOISSUE more work on Legacy migration --- api/logic/minecraft/legacy/LegacyInstance.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'api/logic/minecraft/legacy/LegacyInstance.h') diff --git a/api/logic/minecraft/legacy/LegacyInstance.h b/api/logic/minecraft/legacy/LegacyInstance.h index 9c5cedd3..5f67cddb 100644 --- a/api/logic/minecraft/legacy/LegacyInstance.h +++ b/api/logic/minecraft/legacy/LegacyInstance.h @@ -22,6 +22,7 @@ class ModList; class LegacyModList; +class WorldList; class Task; /* * WHY: Legacy instances - from MultiMC 3 and 4 - are here only to provide a way to upgrade them to the current format. @@ -74,6 +75,7 @@ public: std::shared_ptr jarModList() const; QList getJarMods() const; + std::shared_ptr worldList() const; /*! * Whether or not the instance's minecraft.jar needs to be rebuilt. @@ -95,6 +97,14 @@ public: virtual QString typeName() const override; + bool canLaunch() const override + { + return false; + } + bool canEdit() const override + { + return true; + } bool canExport() const override { return false; @@ -125,4 +135,5 @@ public: } protected: mutable std::shared_ptr jar_mod_list; + mutable std::shared_ptr m_world_list; }; -- cgit v1.2.3