d884f849d6
Redone the instance action toolbar: * Removed all the dead actions * Change icon and Rename are now morphed into a header * Added button for opening the config folder Implemented support for loose files and folders as legacy jar mods Added texture pack support
16 lines
378 B
C++
16 lines
378 B
C++
#pragma once
|
|
#include <QString>
|
|
#include <settingsobject.h>
|
|
#include "BaseInstance_p.h"
|
|
#include "ModList.h"
|
|
#include <QSharedPointer>
|
|
|
|
class ModList;
|
|
|
|
struct LegacyInstancePrivate: public BaseInstancePrivate
|
|
{
|
|
QSharedPointer<ModList> jar_mod_list;
|
|
QSharedPointer<ModList> core_mod_list;
|
|
QSharedPointer<ModList> loader_mod_list;
|
|
QSharedPointer<ModList> texture_pack_list;
|
|
}; |