Skip to content

Commit

Permalink
chore: 重命名combat action
Browse files Browse the repository at this point in the history
  • Loading branch information
dongwlin committed Oct 29, 2023
1 parent 3274407 commit 71d1ef5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions source/cli/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ set(CMAKE_CONFIGURATION_TYPES "Release")
add_executable(MAABH3_CLI
main.cpp
main.h
CustomAction/Combat.h
CustomAction/Combat.cpp
CustomAction/CombatAction.h
CustomAction/CombatAction.cpp
CustomAction/CustomActionRegistrar.h
CustomAction/CustomActionRegistrar.cpp
CustomAction/CustomAction.h
CustomAction/CustomAction.cpp
CustomAction/CustomAction.cpp
CustomAction/CustomActionRegistry.h
CustomAction/RandomPointGenerator.h
CustomAction/RandomPointGenerator.cpp
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "Combat.h"
#include "CombatAction.h"

void combat_move(MaaSyncContextHandle sync_context, [[maybe_unused]] MaaStringView custom_action_param,
int32_t target_x, int32_t target_y, int32_t target_w, int32_t target_h)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#pragma once

#include <chrono>
#include <random>
#include <string>
#include <thread>

Expand Down
2 changes: 1 addition & 1 deletion source/cli/CustomAction/CustomActionRegistry.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include "Combat.h"
#include "CombatAction.h"
#include "CustomActionRegistrar.h"

void custom_action_init(CustomActionRegistrar& registrar)
Expand Down

0 comments on commit 71d1ef5

Please sign in to comment.