diff options
author | Petr Mrázek <peterix@gmail.com> | 2014-05-08 19:05:07 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2014-06-09 01:38:29 +0200 |
commit | 69a9ca39ad0685663092a4455de3865715f0122e (patch) | |
tree | e7688a7421d64b000cf98930ae08408c1559e574 /logic/VersionFinal.h | |
parent | 825d31bf1a7e66eee8a139ecd9b272cf3c374349 (diff) | |
download | PrismLauncher-69a9ca39ad0685663092a4455de3865715f0122e.tar.gz PrismLauncher-69a9ca39ad0685663092a4455de3865715f0122e.tar.bz2 PrismLauncher-69a9ca39ad0685663092a4455de3865715f0122e.zip |
Add builtin Minecraft versions for legacy
Diffstat (limited to 'logic/VersionFinal.h')
-rw-r--r-- | logic/VersionFinal.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/logic/VersionFinal.h b/logic/VersionFinal.h index f3bf9771..ceb90f57 100644 --- a/logic/VersionFinal.h +++ b/logic/VersionFinal.h @@ -91,7 +91,7 @@ public: /// Last updated time - as a string QString time; /// Release time - as a string - QString releaseTime; + QString versionReleaseTime; /// Release type - "release" or "snapshot" QString type; /// Assets type - "legacy" or a version ID @@ -125,7 +125,11 @@ public: * The main class to load first */ QString mainClass; - + /** + * The applet class, for some very old minecraft releases + */ + QString appletClass; + /// the list of libs - both active and inactive, native and java QList<std::shared_ptr<OneSixLibrary>> libraries; |