mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-17 18:01:26 +08:00
21 lines
430 B
C++
21 lines
430 B
C++
#pragma once
|
|
#include "Task/InterfaceTask.h"
|
|
|
|
namespace asst
|
|
{
|
|
class DebugTask : public InterfaceTask
|
|
{
|
|
public:
|
|
inline static constexpr std::string_view TaskType = "Debug";
|
|
|
|
DebugTask(const AsstCallback& callback, Assistant* inst);
|
|
virtual ~DebugTask() override = default;
|
|
|
|
virtual bool run() override;
|
|
|
|
private:
|
|
void test_drops();
|
|
void test_skill_ready();
|
|
};
|
|
}
|