aboutsummaryrefslogtreecommitdiff
path: root/logic/Mod.h
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2013-12-29 03:36:47 +0100
committerPetr Mrázek <peterix@gmail.com>2013-12-29 03:36:47 +0100
commitfbf1cc2848d0e985ba72b1fe9625bc88b5fe2208 (patch)
tree34fc33a848056bd38a007494664974e28aba96be /logic/Mod.h
parent997be947c9baa1499f708594d7a954d772ea99b7 (diff)
parent8549e5317f708e71c2dead9d84cc27d6185b523e (diff)
downloadPrismLauncher-fbf1cc2848d0e985ba72b1fe9625bc88b5fe2208.tar.gz
PrismLauncher-fbf1cc2848d0e985ba72b1fe9625bc88b5fe2208.tar.bz2
PrismLauncher-fbf1cc2848d0e985ba72b1fe9625bc88b5fe2208.zip
Merge https://github.com/robotbrain/MultiMC5 into develop
Diffstat (limited to 'logic/Mod.h')
-rw-r--r--logic/Mod.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/logic/Mod.h b/logic/Mod.h
index 05d3cea2..2eb2b97a 100644
--- a/logic/Mod.h
+++ b/logic/Mod.h
@@ -25,6 +25,7 @@ public:
MOD_ZIPFILE, //!< The mod is a zip file containing the mod's class files.
MOD_SINGLEFILE, //!< The mod is a single file (not a zip file).
MOD_FOLDER, //!< The mod is in a folder on the filesystem.
+ MOD_LITEMOD, //!< The mod is a litemod
};
Mod(const QFileInfo &file);
@@ -102,6 +103,7 @@ public:
private:
void ReadMCModInfo(QByteArray contents);
void ReadForgeInfo(QByteArray contents);
+ void ReadLiteModInfo(QByteArray contents);
protected: