mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-17 01:59:33 +08:00
* feat: MaaCore主任务错误时保存截图 * chore: Auto update by pre-commit hooks [skip changelog] --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
12 lines
203 B
C++
12 lines
203 B
C++
#include "InterfaceTask.h"
|
|
|
|
bool asst::InterfaceTask::run()
|
|
{
|
|
if (PackageTask::run()) {
|
|
return true;
|
|
}
|
|
|
|
save_img(utils::path("debug") / utils::path("interface"));
|
|
return false;
|
|
}
|