2013-08-17 17:10:51 +05:30
|
|
|
#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;
|
2013-08-25 05:02:42 +05:30
|
|
|
QSharedPointer<ModList> texture_pack_list;
|
2013-08-17 17:10:51 +05:30
|
|
|
};
|