aboutsummaryrefslogtreecommitdiff
path: root/launcher/modplatform/legacy_ftb/PackHelpers.h
blob: 4fb53553080022d388bed8613c874d6a24778b2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#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;
};

typedef QList<Modpack> ModpackList;

}  // namespace LegacyFTB

// We need it for the proxy model
Q_DECLARE_METATYPE(LegacyFTB::Modpack)