Added FTB pack selection ad download, WIP

This commit is contained in:
Janrupf
2018-02-28 19:42:30 +01:00
parent 1a43f28297
commit ab3fe74c97
21 changed files with 914 additions and 40 deletions

View File

@@ -0,0 +1,21 @@
#pragma once
#include <QList>
//Header for structs etc...
struct FtbModpack {
QString name;
QString description;
QString author;
QStringList oldVersions;
QString currentVersion;
QString mcVersion;
QString mods;
QString image;
//Technical data
QString dir;
QString file; //<- Url in the xml, but doesn't make much sense
};
typedef QList<FtbModpack> FtbModpackList;