NOISSUE move modpack platform related files to 'modplatform' subfolders
This commit is contained in:
26
api/logic/modplatform/ftb/PackHelpers.h
Normal file
26
api/logic/modplatform/ftb/PackHelpers.h
Normal file
@ -0,0 +1,26 @@
|
||||
#pragma once
|
||||
#include <QList>
|
||||
#include "qmetatype.h"
|
||||
|
||||
//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
|
||||
|
||||
bool bugged = false;
|
||||
bool broken = false;
|
||||
};
|
||||
//We need it for the proxy model
|
||||
Q_DECLARE_METATYPE(FtbModpack)
|
||||
|
||||
typedef QList<FtbModpack> FtbModpackList;
|
Reference in New Issue
Block a user