diff options
author | TheKodeToad <TheKodeToad@proton.me> | 2023-03-18 14:02:05 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-18 14:02:05 +0000 |
commit | 1893871a99d26955e411b0b5dba4d2fe4368d96e (patch) | |
tree | 998873a40d3da6622854b3fb84d973f7b29d70a3 /launcher/minecraft/MinecraftInstance.h | |
parent | 8837f06e4e97ed966662b52db206facd7f91a489 (diff) | |
parent | 45b0367d14f38d40af5cc8603f7daab05d83af5f (diff) | |
download | PrismLauncher-1893871a99d26955e411b0b5dba4d2fe4368d96e.tar.gz PrismLauncher-1893871a99d26955e411b0b5dba4d2fe4368d96e.tar.bz2 PrismLauncher-1893871a99d26955e411b0b5dba4d2fe4368d96e.zip |
Merge branch 'PrismLauncher:develop' into mrpack-export
Diffstat (limited to 'launcher/minecraft/MinecraftInstance.h')
-rw-r--r-- | launcher/minecraft/MinecraftInstance.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/launcher/minecraft/MinecraftInstance.h b/launcher/minecraft/MinecraftInstance.h index 1bbd7b83..a75fa481 100644 --- a/launcher/minecraft/MinecraftInstance.h +++ b/launcher/minecraft/MinecraftInstance.h @@ -84,6 +84,7 @@ public: QString shaderPacksDir() const; QString modsRoot() const override; QString coreModsDir() const; + QString nilModsDir() const; QString modsCacheLocation() const; QString libDir() const; QString worldDir() const; @@ -116,6 +117,7 @@ public: ////// Mod Lists ////// std::shared_ptr<ModFolderModel> loaderModList() const; std::shared_ptr<ModFolderModel> coreModList() const; + std::shared_ptr<ModFolderModel> nilModList() const; std::shared_ptr<ResourcePackFolderModel> resourcePackList() const; std::shared_ptr<TexturePackFolderModel> texturePackList() const; std::shared_ptr<ShaderPackFolderModel> shaderPackList() const; @@ -170,6 +172,7 @@ protected: // data std::shared_ptr<PackProfile> m_components; mutable std::shared_ptr<ModFolderModel> m_loader_mod_list; mutable std::shared_ptr<ModFolderModel> m_core_mod_list; + mutable std::shared_ptr<ModFolderModel> m_nil_mod_list; mutable std::shared_ptr<ResourcePackFolderModel> m_resource_pack_list; mutable std::shared_ptr<ShaderPackFolderModel> m_shader_pack_list; mutable std::shared_ptr<TexturePackFolderModel> m_texture_pack_list; |