diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-25 04:45:17 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-25 04:48:09 +0100 |
commit | 50e42d74c9b25e2ec4c6b9fd3434f431c0b5c3d9 (patch) | |
tree | 826691d937867e21587fd87adb2de6d34175eecd /src/chunk.hpp | |
parent | 4746d19f7a749808391d1ad7ee6bd86950ba064f (diff) |
rename path_search -> search
Diffstat (limited to 'src/chunk.hpp')
-rw-r--r-- | src/chunk.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chunk.hpp b/src/chunk.hpp index 217bd35a..682482f7 100644 --- a/src/chunk.hpp +++ b/src/chunk.hpp @@ -5,7 +5,7 @@ #include "src/RTree-fwd.h" #include "global-coords.hpp" #include "wall-defs.hpp" -#include "path-search-pred.hpp" +#include "search-pred.hpp" #include <type_traits> #include <array> #include <Corrade/Containers/Array.h> @@ -121,7 +121,7 @@ public: const pass_region* get_pass_region(); void make_pass_region(pass_region& ret); - void make_pass_region(pass_region& ret, const detail_astar::pred& f); + void make_pass_region(pass_region& ret, const Search::pred& f); private: struct ground_stuff |