NOISSUE Add FTB App import page to new instance dialog

This commit is contained in:
Petr Mrázek
2022-05-28 22:42:09 +02:00
parent 399247a018
commit 41e5b3b628
9 changed files with 681 additions and 4 deletions

View File

@@ -36,6 +36,7 @@
#include "ui/pages/modplatform/VanillaPage.h"
#include "ui/pages/modplatform/atlauncher/AtlPage.h"
#include "ui/pages/modplatform/legacy_ftb/Page.h"
#include "ui/pages/modplatform/import_ftb/FTBAPage.h"
#include "ui/pages/modplatform/ImportPage.h"
#include "ui/pages/modplatform/modrinth/ModrinthPage.h"
#include "ui/pages/modplatform/technic/TechnicPage.h"
@@ -128,9 +129,10 @@ QList<BasePage *> NewInstanceDialog::getPages()
{
new VanillaPage(this),
importPage,
new AtlPage(this),
new LegacyFTB::Page(this),
new ModrinthPage(this),
new AtlPage(this),
new ImportFTB::FTBAPage(this),
new LegacyFTB::Page(this),
technicPage
};
}