2015-02-02 22:25:30 +00:00
|
|
|
/* Copyright 2013-2015 MultiMC Contributors
|
2013-12-28 13:22:36 +00:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2014-01-23 20:31:41 +00:00
|
|
|
|
2013-12-28 13:22:36 +00:00
|
|
|
#include <QString>
|
2013-12-28 22:34:18 +00:00
|
|
|
#include <QMap>
|
2013-12-28 13:22:36 +00:00
|
|
|
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "BaseInstaller.h"
|
2016-02-27 18:58:40 +00:00
|
|
|
#include "LiteLoaderVersionList.h"
|
2014-02-19 21:34:17 +00:00
|
|
|
|
2015-09-05 17:46:57 +01:00
|
|
|
#include "multimc_logic_export.h"
|
|
|
|
|
|
|
|
class MULTIMC_LOGIC_EXPORT LiteLoaderInstaller : public BaseInstaller
|
2013-12-28 13:22:36 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-03-14 19:48:57 +00:00
|
|
|
LiteLoaderInstaller();
|
2013-12-28 22:34:18 +00:00
|
|
|
|
2014-03-14 19:48:57 +00:00
|
|
|
void prepare(LiteLoaderVersionPtr version);
|
2014-01-24 17:12:02 +00:00
|
|
|
bool add(OneSixInstance *to) override;
|
2014-09-06 17:16:56 +01:00
|
|
|
virtual QString id() const override { return "com.mumfrey.liteloader"; }
|
2013-12-28 22:34:18 +00:00
|
|
|
|
2015-04-26 22:04:50 +01:00
|
|
|
Task *createInstallTask(OneSixInstance *instance, BaseVersionPtr version, QObject *parent) override;
|
2014-03-14 19:48:57 +00:00
|
|
|
|
2013-12-28 22:34:18 +00:00
|
|
|
private:
|
2014-02-19 21:34:17 +00:00
|
|
|
LiteLoaderVersionPtr m_version;
|
2013-12-28 13:22:36 +00:00
|
|
|
};
|