diff options
Diffstat (limited to 'backend/OneSixInstance.h')
-rw-r--r-- | backend/OneSixInstance.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/backend/OneSixInstance.h b/backend/OneSixInstance.h index 7b9637ef..2abf5b49 100644 --- a/backend/OneSixInstance.h +++ b/backend/OneSixInstance.h @@ -1 +1,11 @@ -#pragma once
\ No newline at end of file +#pragma once + +#include "BaseInstance.h" +class LIBMULTIMC_EXPORT OneSixInstance : public BaseInstance +{ + Q_OBJECT +public: + explicit OneSixInstance(const QString &rootDir, SettingsObject * settings, QObject *parent = 0); + virtual GameUpdateTask* doUpdate(); + virtual MinecraftProcess* prepareForLaunch ( QString user, QString session ); +};
\ No newline at end of file |