mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-18 02:10:21 +08:00
20 lines
470 B
C++
20 lines
470 B
C++
#pragma once
|
|
#include "Task/InterfaceTask.h"
|
|
#include "Task/Miscellaneous/StartGameTaskPlugin.h"
|
|
|
|
namespace asst
|
|
{
|
|
class ProcessTask;
|
|
|
|
class VideoRecognitionTask final : public InterfaceTask
|
|
{
|
|
public:
|
|
inline static constexpr std::string_view TaskType = "VideoRecognition";
|
|
|
|
VideoRecognitionTask(const AsstCallback& callback, Assistant* inst);
|
|
virtual ~VideoRecognitionTask() override = default;
|
|
|
|
bool set_params(const json::value& params) override;
|
|
};
|
|
}
|