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 /test/path-search.cpp | |
parent | 4746d19f7a749808391d1ad7ee6bd86950ba064f (diff) |
rename path_search -> search
Diffstat (limited to 'test/path-search.cpp')
-rw-r--r-- | test/path-search.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/path-search.cpp b/test/path-search.cpp index 4541d3f6..1d9df3f3 100644 --- a/test/path-search.cpp +++ b/test/path-search.cpp @@ -5,13 +5,13 @@ #include "loader/wall-cell.hpp" #include "src/world.hpp" #include "src/scenery.hpp" -#include "src/path-search-bbox.hpp" +#include "src/search-bbox.hpp" #include <Magnum/Math/Functions.h> namespace floormat { -using namespace floormat::detail_astar; -using detail_astar::bbox; +using namespace floormat::Search; +using Search::bbox; namespace { |