2021-01-18 07:28:54 +00:00
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2015-07-21 01:38:15 +01: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
|
|
|
|
|
|
|
|
#include <launch/LaunchStep.h>
|
|
|
|
#include <memory>
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
class ModMinecraftJar : public LaunchStep {
|
2015-07-21 01:38:15 +01:00
|
|
|
Q_OBJECT
|
2023-08-02 17:35:35 +01:00
|
|
|
public:
|
|
|
|
explicit ModMinecraftJar(LaunchTask* parent) : LaunchStep(parent){};
|
2015-07-21 01:38:15 +01:00
|
|
|
virtual ~ModMinecraftJar(){};
|
|
|
|
|
2018-06-28 22:18:45 +01:00
|
|
|
virtual void executeTask() override;
|
2023-08-02 17:35:35 +01:00
|
|
|
virtual bool canAbort() const override { return false; }
|
2018-01-07 23:59:47 +00:00
|
|
|
void finalize() override;
|
2023-08-02 17:35:35 +01:00
|
|
|
|
|
|
|
private:
|
2018-01-07 23:59:47 +00:00
|
|
|
bool removeJar();
|
2015-07-21 01:38:15 +01:00
|
|
|
};
|