mirror of
https://github.com/MultiMC/MultiMC5.git
synced 2024-12-27 03:14:49 +00:00
14 lines
266 B
C
14 lines
266 B
C
|
#pragma once
|
||
|
#include <QString>
|
||
|
#include <settingsobject.h>
|
||
|
|
||
|
class BaseInstance;
|
||
|
|
||
|
#define I_D(Class) Class##Private * const d = (Class##Private * const) inst_d.data()
|
||
|
|
||
|
struct BaseInstancePrivate
|
||
|
{
|
||
|
QString m_rootDir;
|
||
|
QString m_group;
|
||
|
SettingsObject *m_settings;
|
||
|
};
|