diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-08-27 22:32:41 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-08-27 22:32:41 +0200 |
commit | fcd05ca2f6b7a76063c98e2720be758be1f67980 (patch) | |
tree | 29638132d6f5365a6db0ec0d42a3d3ff1caf9c3e /logic/Mod.h | |
parent | a266e5d0ccafe1585bafd471d7a71181358ceb59 (diff) | |
download | MultiMC-fcd05ca2f6b7a76063c98e2720be758be1f67980.tar MultiMC-fcd05ca2f6b7a76063c98e2720be758be1f67980.tar.gz MultiMC-fcd05ca2f6b7a76063c98e2720be758be1f67980.tar.lz MultiMC-fcd05ca2f6b7a76063c98e2720be758be1f67980.tar.xz MultiMC-fcd05ca2f6b7a76063c98e2720be758be1f67980.zip |
Read mod files to get versions... and stuff.
Diffstat (limited to 'logic/Mod.h')
-rw-r--r-- | logic/Mod.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/logic/Mod.h b/logic/Mod.h index ea0827bd..fcfcc139 100644 --- a/logic/Mod.h +++ b/logic/Mod.h @@ -56,6 +56,9 @@ public: { return filename() == other.filename() && id() == other.id() && version() == other.version() && type() == other.type(); } +private: + void ReadMCModInfo(QByteArray contents); + void ReadForgeInfo(QByteArray contents); protected: //FIXME: what do do with those? HMM... |