diff options
author | Jan Dalheimer <jan@dalheimer.de> | 2014-03-09 08:18:50 +0100 |
---|---|---|
committer | Jan Dalheimer <jan@dalheimer.de> | 2014-03-09 08:18:50 +0100 |
commit | 44f21406e91c68b230d38441b950eb7c3d6a8ec5 (patch) | |
tree | 46ae524a9808e6436344f67afd18222a84c96799 /logic/MinecraftProcess.h | |
parent | 737169d1d3ac62a7db99d51e892289aee8c1d3a3 (diff) | |
download | MultiMC-44f21406e91c68b230d38441b950eb7c3d6a8ec5.tar MultiMC-44f21406e91c68b230d38441b950eb7c3d6a8ec5.tar.gz MultiMC-44f21406e91c68b230d38441b950eb7c3d6a8ec5.tar.lz MultiMC-44f21406e91c68b230d38441b950eb7c3d6a8ec5.tar.xz MultiMC-44f21406e91c68b230d38441b950eb7c3d6a8ec5.zip |
Some pre/post related stuff
Reload the onesix version config after the commands (addresses https://www.pivotaltracker.com/story/show/60360652)
Add a few more variables and also substitute them in the command (fixes https://www.pivotaltracker.com/story/show/66994828)
Diffstat (limited to 'logic/MinecraftProcess.h')
-rw-r--r-- | logic/MinecraftProcess.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/logic/MinecraftProcess.h b/logic/MinecraftProcess.h index 56340962..d91dad56 100644 --- a/logic/MinecraftProcess.h +++ b/logic/MinecraftProcess.h @@ -131,6 +131,13 @@ protected: QString launchScript; QString m_nativeFolder; + bool preLaunch(); + bool postLaunch(); + QMap<QString, QString> getVariables() const; + QString substituteVariables(const QString &cmd) const; + + QStringList javaArguments() const; + protected slots: void finish(int, QProcess::ExitStatus status); |