summaryrefslogtreecommitdiffstats
path: root/logic/minecraft/MinecraftProfile.h
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2016-03-07 02:01:28 +0100
committerPetr Mrázek <peterix@gmail.com>2016-03-07 02:03:36 +0100
commitd4eacb56b30baaef801f42545398a4f29755fadf (patch)
tree0a185b0841f12c5af431cdedeb8695691ac0bce9 /logic/minecraft/MinecraftProfile.h
parent3d8728f52f220845fc4079d34b97458a122ac031 (diff)
downloadMultiMC-d4eacb56b30baaef801f42545398a4f29755fadf.tar
MultiMC-d4eacb56b30baaef801f42545398a4f29755fadf.tar.gz
MultiMC-d4eacb56b30baaef801f42545398a4f29755fadf.tar.lz
MultiMC-d4eacb56b30baaef801f42545398a4f29755fadf.tar.xz
MultiMC-d4eacb56b30baaef801f42545398a4f29755fadf.zip
NOISSUE make new Mojang version format pass through MultiMC structures
Not yet used effectively, but it is read and written properly
Diffstat (limited to 'logic/minecraft/MinecraftProfile.h')
-rw-r--r--logic/minecraft/MinecraftProfile.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/logic/minecraft/MinecraftProfile.h b/logic/minecraft/MinecraftProfile.h
index 25663c74..84d3ce3b 100644
--- a/logic/minecraft/MinecraftProfile.h
+++ b/logic/minecraft/MinecraftProfile.h
@@ -21,7 +21,7 @@
#include <QList>
#include <memory>
-#include "RawLibrary.h"
+#include "Library.h"
#include "VersionFile.h"
#include "JarMod.h"
@@ -93,10 +93,10 @@ public:
public:
/// get all java libraries that belong to the classpath
- QList<RawLibraryPtr> getActiveNormalLibs();
+ QList<LibraryPtr> getActiveNormalLibs();
/// get all native libraries that need to be available to the process
- QList<RawLibraryPtr> getActiveNativeLibs();
+ QList<LibraryPtr> getActiveNativeLibs();
/// get file ID of the patch file at #
QString versionFileId(const int index) const;
@@ -161,10 +161,10 @@ public: /* data */
QString appletClass;
/// the list of libs - both active and inactive, native and java
- QList<RawLibraryPtr> libraries;
+ QList<LibraryPtr> libraries;
/// same, but only vanilla.
- QList<RawLibraryPtr> vanillaLibraries;
+ QList<LibraryPtr> vanillaLibraries;
/// traits, collected from all the version files (version files can only add)
QSet<QString> traits;