diff options
author | Petr Mrázek <peterix@gmail.com> | 2016-02-26 02:04:21 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2016-02-26 02:04:21 +0100 |
commit | 71e4b147ec3b8c5f3e2a004920ffbc0a3b6e18c8 (patch) | |
tree | 2b96e6bc1c531c094a1a9d41e171cbed9e97210e /logic/minecraft/MinecraftProfile.h | |
parent | f6b2ccb110f0bb4071044456a93c6edc1de50922 (diff) | |
download | MultiMC-71e4b147ec3b8c5f3e2a004920ffbc0a3b6e18c8.tar MultiMC-71e4b147ec3b8c5f3e2a004920ffbc0a3b6e18c8.tar.gz MultiMC-71e4b147ec3b8c5f3e2a004920ffbc0a3b6e18c8.tar.lz MultiMC-71e4b147ec3b8c5f3e2a004920ffbc0a3b6e18c8.tar.xz MultiMC-71e4b147ec3b8c5f3e2a004920ffbc0a3b6e18c8.zip |
NOISSUE remove OneSixLibrary
Diffstat (limited to 'logic/minecraft/MinecraftProfile.h')
-rw-r--r-- | logic/minecraft/MinecraftProfile.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/logic/minecraft/MinecraftProfile.h b/logic/minecraft/MinecraftProfile.h index 7686c55b..a9b3c299 100644 --- a/logic/minecraft/MinecraftProfile.h +++ b/logic/minecraft/MinecraftProfile.h @@ -21,7 +21,7 @@ #include <QList> #include <memory> -#include "OneSixLibrary.h" +#include "RawLibrary.h" #include "VersionFile.h" #include "JarMod.h" @@ -96,10 +96,10 @@ public: public: /// get all java libraries that belong to the classpath - QList<std::shared_ptr<OneSixLibrary>> getActiveNormalLibs(); + QList<RawLibraryPtr> getActiveNormalLibs(); /// get all native libraries that need to be available to the process - QList<std::shared_ptr<OneSixLibrary>> getActiveNativeLibs(); + QList<RawLibraryPtr> getActiveNativeLibs(); /// get file ID of the patch file at # QString versionFileId(const int index) const; @@ -171,10 +171,10 @@ public: /* data */ QString appletClass; /// the list of libs - both active and inactive, native and java - QList<OneSixLibraryPtr> libraries; + QList<RawLibraryPtr> libraries; /// same, but only vanilla. - QList<OneSixLibraryPtr> vanillaLibraries; + QList<RawLibraryPtr> vanillaLibraries; /// traits, collected from all the version files (version files can only add) QSet<QString> traits; |