mirror of
https://github.com/MultiMC/MultiMC5.git
synced 2024-12-27 21:15:19 +00:00
253067c782
Also, implemented some basic modlist logic, to be wired up.
15 lines
334 B
C++
15 lines
334 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;
|
|
}; |