2021-01-18 07:28:54 +00:00
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2016-07-23 12:36:31 +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
|
|
|
|
|
2016-11-03 00:10:16 +00:00
|
|
|
#include <LoggedProcess.h>
|
2023-08-02 17:35:35 +01:00
|
|
|
#include <launch/LaunchStep.h>
|
2016-07-23 12:36:31 +01:00
|
|
|
#include <minecraft/auth/AuthSession.h>
|
|
|
|
|
2021-03-10 02:52:35 +00:00
|
|
|
// Create the main .minecraft for the instance and any other necessary folders
|
2023-08-02 17:35:35 +01:00
|
|
|
class CreateGameFolders : public LaunchStep {
|
2016-07-23 12:36:31 +01:00
|
|
|
Q_OBJECT
|
2023-08-02 17:35:35 +01:00
|
|
|
public:
|
|
|
|
explicit CreateGameFolders(LaunchTask* parent);
|
|
|
|
virtual ~CreateGameFolders(){};
|
2018-06-28 20:34:56 +01:00
|
|
|
|
2016-07-23 12:36:31 +01:00
|
|
|
virtual void executeTask();
|
2023-08-02 17:35:35 +01:00
|
|
|
virtual bool canAbort() const { return false; }
|
2016-07-23 12:36:31 +01:00
|
|
|
};
|