style: format [skip changelog]

python tools\ClangFormatter\clang-formatter.py --input=src\MaaCore --ignore="[\"src/MaaCore/x64\"]"
python tools\ClangFormatter\clang-formatter.py --input=resource\ --ignore="[\"resource/Arknights-Tile-Pos\", \"resource/infrast.json\"]"
This commit is contained in:
zzyyyl
2023-10-19 14:35:06 +08:00
parent 378d8205bc
commit af9ff4c0bb
3 changed files with 6 additions and 5 deletions

View File

@@ -8625,7 +8625,7 @@
},
"ScreenshotTaskPlugin-Config": {
"Doc": "本任务是插件 ScreenshotTaskPlugin 的配置",
"Doc_2": "需要在任务 Task 开始时截图时,将 Task 加入到此任务的 next 列表。",
"Doc_2": "需要在任务 Task 开始时截图时,将 Task 加入到此任务的 next 列表。",
"algorithm": "JustReturn",
"next": [
"Roguelike@StageEncounterOptionUnknown"
@@ -8633,7 +8633,7 @@
},
"ScreenshotTaskPlugin-Config-Debug": {
"Doc": "本任务是插件 ScreenshotTaskPlugin 的配置",
"Doc_2": "存在 DEBUG 或 DEBUG.txt 时的额外截图",
"Doc_2": "存在 DEBUG 或 DEBUG.txt 时的额外截图",
"algorithm": "JustReturn",
"next": []
},

View File

@@ -27,8 +27,9 @@ namespace asst
enum class StaticOptionKey
{
Invalid = 0,
CpuOCR = 1, // use CPU to OCR, no value. It does not support switching after the resource is loaded.
GpuOCR = 2, // use GPU to OCR, value is gpu_id int to string. It does not support switching after the resource is loaded.
CpuOCR = 1, // use CPU to OCR, no value. It does not support switching after the resource is loaded.
GpuOCR = 2, // use GPU to OCR, value is gpu_id int to string. It does not support switching after the resource
// is loaded.
};
enum class InstanceOptionKey

View File

@@ -3,8 +3,8 @@
#include "Common/AsstTypes.h"
#include "Config/AbstractResource.h"
#include <vector>
#include <optional>
#include <vector>
namespace cv
{