blob: ba0e5cb0aef8200e6a38e260408f53e6461a3b3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
|