mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-17 01:59:33 +08:00
23 lines
495 B
C++
23 lines
495 B
C++
#pragma once
|
|
#include "Task/InterfaceTask.h"
|
|
|
|
namespace asst
|
|
{
|
|
class ProcessTask;
|
|
class AutoRecruitTask;
|
|
|
|
class RecruitTask final : public InterfaceTask
|
|
{
|
|
public:
|
|
inline static constexpr std::string_view TaskType = "Recruit";
|
|
|
|
RecruitTask(const AsstCallback& callback, Assistant* inst);
|
|
virtual ~RecruitTask() override = default;
|
|
|
|
virtual bool set_params(const json::value& params) override;
|
|
|
|
private:
|
|
std::shared_ptr<AutoRecruitTask> m_auto_recruit_task_ptr = nullptr;
|
|
};
|
|
}
|