diff options
author | Jan Dalheimer <jan@dalheimer.de> | 2014-02-16 10:46:14 +0100 |
---|---|---|
committer | Jan Dalheimer <jan@dalheimer.de> | 2014-02-16 10:46:14 +0100 |
commit | 616c37269053bc4f111792dbb9374cc119a58339 (patch) | |
tree | 7ac3bc3bbec628593473bc87ffcec9acf24e990b /MultiMC.h | |
parent | 994972bf5da5584186e6e82c36287afeb6c1e23a (diff) | |
download | PrismLauncher-616c37269053bc4f111792dbb9374cc119a58339.tar.gz PrismLauncher-616c37269053bc4f111792dbb9374cc119a58339.tar.bz2 PrismLauncher-616c37269053bc4f111792dbb9374cc119a58339.zip |
Fix more stuff. Detached tools, only MCEdit for now.
Diffstat (limited to 'MultiMC.h')
-rw-r--r-- | MultiMC.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -23,6 +23,7 @@ class NotificationChecker; class NewsChecker; class StatusChecker; class BaseProfilerFactory; +class BaseDetachedToolFactory; #if defined(MMC) #undef MMC @@ -132,6 +133,10 @@ public: { return m_profilers; } + QMap<QString, std::shared_ptr<BaseDetachedToolFactory>> tools() + { + return m_tools; + } void installUpdates(const QString updateFilesDir, UpdateFlags flags = None); @@ -205,6 +210,7 @@ private: std::shared_ptr<MinecraftVersionList> m_minecraftlist; std::shared_ptr<JavaVersionList> m_javalist; QMap<QString, std::shared_ptr<BaseProfilerFactory>> m_profilers; + QMap<QString, std::shared_ptr<BaseDetachedToolFactory>> m_tools; QsLogging::DestinationPtr m_fileDestination; QsLogging::DestinationPtr m_debugDestination; |