mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-17 01:59:33 +08:00
20 lines
336 B
C++
20 lines
336 B
C++
#include "InfrastMfgTask.h"
|
|
|
|
#include "Controller/Controller.h"
|
|
#include "Vision/Matcher.h"
|
|
|
|
bool asst::InfrastMfgTask::_run()
|
|
{
|
|
m_all_available_opers.clear();
|
|
|
|
swipe_to_the_left_of_main_ui();
|
|
enter_facility(0);
|
|
click_bottom_left_tab();
|
|
|
|
if (!shift_facility_list()) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|