diff options
author | kb1000 <kaeptmblaubaer1000@gmail.com> | 2022-01-31 15:25:36 +0100 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-05-14 20:01:09 +0200 |
commit | db038463581400005f045a277a249ab07175ab2b (patch) | |
tree | 8c9a0dc54bd28d2a92c5d33c81964e872d3caa4d /launcher/ui/dialogs | |
parent | c6b3eccbdf2785b59ab33ed99fabf6f3f5d81d2a (diff) | |
download | PrismLauncher-db038463581400005f045a277a249ab07175ab2b.tar.gz PrismLauncher-db038463581400005f045a277a249ab07175ab2b.tar.bz2 PrismLauncher-db038463581400005f045a277a249ab07175ab2b.zip |
Add support for importing Modrinth packs from files
Diffstat (limited to 'launcher/ui/dialogs')
-rw-r--r-- | launcher/ui/dialogs/NewInstanceDialog.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/launcher/ui/dialogs/NewInstanceDialog.cpp b/launcher/ui/dialogs/NewInstanceDialog.cpp index b402839c..05ea091d 100644 --- a/launcher/ui/dialogs/NewInstanceDialog.cpp +++ b/launcher/ui/dialogs/NewInstanceDialog.cpp @@ -39,6 +39,7 @@ #include "ui/pages/modplatform/legacy_ftb/Page.h" #include "ui/pages/modplatform/flame/FlamePage.h" #include "ui/pages/modplatform/ImportPage.h" +#include "ui/pages/modplatform/modrinth/ModrinthPage.h" #include "ui/pages/modplatform/technic/TechnicPage.h" @@ -134,6 +135,7 @@ QList<BasePage *> NewInstanceDialog::getPages() flamePage, new FtbPage(this), new LegacyFTB::Page(this), + new ModrinthPage(this), technicPage }; } |