mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-12-22 11:39:55 +00:00
Added FTB pack selection ad download, WIP
This commit is contained in:
21
api/logic/modplatform/PackHelpers.h
Normal file
21
api/logic/modplatform/PackHelpers.h
Normal 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;
|
||||
Reference in New Issue
Block a user