5be80df1ee
Signed-off-by: LocalSpook <56512186+LocalSpook@users.noreply.github.com>
40 lines
739 B
C++
40 lines
739 B
C++
#pragma once
|
|
|
|
#include <QList>
|
|
#include <QMetaType>
|
|
#include <QString>
|
|
#include <QStringList>
|
|
|
|
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;
|
|
};
|
|
|
|
using ModpackList = QList<Modpack>;
|
|
|
|
} // namespace LegacyFTB
|
|
|
|
// We need it for the proxy model
|
|
Q_DECLARE_METATYPE(LegacyFTB::Modpack)
|