mirror of
https://github.com/MultiMC/MultiMC5.git
synced 2025-01-01 00:16:40 +00:00
14 lines
365 B
C++
14 lines
365 B
C++
#pragma once
|
|
|
|
#include <BaseInstance.h>
|
|
|
|
#include "multimc_logic_export.h"
|
|
|
|
// Pseudo-plugin for FTB related things. Super derpy!
|
|
class MULTIMC_LOGIC_EXPORT FTBPlugin
|
|
{
|
|
public:
|
|
static void initialize(SettingsObjectPtr globalSettings);
|
|
static void loadInstances(SettingsObjectPtr globalSettings, QMap<QString, QString> &groupMap, QList<InstancePtr> &tempList);
|
|
};
|