aboutsummaryrefslogtreecommitdiff
path: root/api/logic/modplatform/legacy_ftb/PackHelpers.h
diff options
context:
space:
mode:
Diffstat (limited to 'api/logic/modplatform/legacy_ftb/PackHelpers.h')
-rw-r--r--api/logic/modplatform/legacy_ftb/PackHelpers.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/api/logic/modplatform/legacy_ftb/PackHelpers.h b/api/logic/modplatform/legacy_ftb/PackHelpers.h
deleted file mode 100644
index 566210d0..00000000
--- a/api/logic/modplatform/legacy_ftb/PackHelpers.h
+++ /dev/null
@@ -1,45 +0,0 @@
-#pragma once
-
-#include <QList>
-#include <QString>
-#include <QStringList>
-#include <QMetaType>
-
-namespace LegacyFTB {
-
-//Header for structs etc...
-enum class PackType
-{
- Public,
- ThirdParty,
- Private
-};
-
-struct Modpack
-{
- QString name;
- QString description;
- QString author;
- QStringList oldVersions;
- QString currentVersion;
- QString mcVersion;
- QString mods;
- QString logo;
-
- //Technical data
- QString dir;
- QString file; //<- Url in the xml, but doesn't make much sense
-
- bool bugged = false;
- bool broken = false;
-
- PackType type;
- QString packCode;
-};
-
-typedef QList<Modpack> ModpackList;
-
-}
-
-//We need it for the proxy model
-Q_DECLARE_METATYPE(LegacyFTB::Modpack)