mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-10-04 17:09:25 +00:00
NOISSUE FTB pack code implementation, cleaned up
This commit is contained in:
committed by
Petr Mrázek
parent
6cee50eac6
commit
6aada8adf7
@@ -6,13 +6,15 @@
|
||||
#include <QMetaType>
|
||||
|
||||
//Header for structs etc...
|
||||
enum FtbPackType {
|
||||
enum class FtbPackType
|
||||
{
|
||||
Public,
|
||||
ThirdParty,
|
||||
Private
|
||||
};
|
||||
|
||||
struct FtbModpack {
|
||||
struct FtbModpack
|
||||
{
|
||||
QString name;
|
||||
QString description;
|
||||
QString author;
|
||||
@@ -30,6 +32,7 @@ struct FtbModpack {
|
||||
bool broken = false;
|
||||
|
||||
FtbPackType type;
|
||||
QString packCode;
|
||||
};
|
||||
|
||||
//We need it for the proxy model
|
||||
|
Reference in New Issue
Block a user