chore: breaking rename

This commit is contained in:
MistEO
2022-12-02 00:22:47 +08:00
parent 8ff2c5e1d0
commit d9dcbb6289
345 changed files with 374 additions and 372 deletions

View File

@@ -0,0 +1,23 @@
#pragma once
#include "Task/InterfaceTask.h"
#include "Task/Miscellaneous/StartGameTaskPlugin.h"
namespace asst
{
class ProcessTask;
class StartUpTask final : public InterfaceTask
{
public:
inline static constexpr std::string_view TaskType = "StartUp";
StartUpTask(const AsstCallback& callback, Assistant* inst);
virtual ~StartUpTask() override = default;
bool set_params(const json::value& params) override;
private:
std::shared_ptr<StartGameTaskPlugin> m_start_game_task_ptr = nullptr;
std::shared_ptr<ProcessTask> m_start_up_task_ptr = nullptr;
};
}