aboutsummaryrefslogtreecommitdiff
path: root/application/pages/modplatform/flame/FlameData.h
diff options
context:
space:
mode:
authorphit <2097483+phit@users.noreply.github.com>2021-03-26 23:15:20 +0100
committerphit <2097483+phit@users.noreply.github.com>2021-04-08 19:32:34 +0200
commit1f8408c79340c7cc93fa1677021f3d0dc3f75c34 (patch)
tree511c6f9b2dba3e14d8322dddfd7ed1e897ba205b /application/pages/modplatform/flame/FlameData.h
parent5400d4e61389694597381f360e0462932d33bfe1 (diff)
downloadPrismLauncher-1f8408c79340c7cc93fa1677021f3d0dc3f75c34.tar.gz
PrismLauncher-1f8408c79340c7cc93fa1677021f3d0dc3f75c34.tar.bz2
PrismLauncher-1f8408c79340c7cc93fa1677021f3d0dc3f75c34.zip
NOISSUE Curseforge makeover
update UI to match other modpack platforms add sorting add version selection, fixes GH-3667 add installing beta versions, fixes GH-3611
Diffstat (limited to 'application/pages/modplatform/flame/FlameData.h')
-rw-r--r--application/pages/modplatform/flame/FlameData.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/application/pages/modplatform/flame/FlameData.h b/application/pages/modplatform/flame/FlameData.h
deleted file mode 100644
index 9245ba8a..00000000
--- a/application/pages/modplatform/flame/FlameData.h
+++ /dev/null
@@ -1,38 +0,0 @@
-#pragma once
-
-#include <QString>
-#include <QList>
-
-namespace Flame {
-
-struct ModpackAuthor {
- QString name;
- QString url;
-};
-
-struct ModpackFile {
- int addonId;
- int fileId;
- QString version;
- QString mcVersion;
- QString downloadUrl;
-};
-
-struct Modpack
-{
- bool broken = true;
- int addonId = 0;
-
- QString name;
- QString description;
- QList<ModpackAuthor> authors;
- QString mcVersion;
- QString logoName;
- QString logoUrl;
- QString websiteUrl;
-
- ModpackFile latestFile;
-};
-}
-
-Q_DECLARE_METATYPE(Flame::Modpack)