diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-24 05:16:58 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-24 05:16:58 +0100 |
commit | db09342af865ac5df7d4c35f25115ed39fbd0ddd (patch) | |
tree | 06216a603a8d1629c690e8dd6ef0ce06eae965cd /test/path-search.cpp | |
parent | ee2f8ee5e5d4e97d7dcaaaf2d7753d1fb6deeadd (diff) |
src: split bbox into its own header
Diffstat (limited to 'test/path-search.cpp')
-rw-r--r-- | test/path-search.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/path-search.cpp b/test/path-search.cpp index caaa55f2..99a2b0a8 100644 --- a/test/path-search.cpp +++ b/test/path-search.cpp @@ -5,14 +5,14 @@ #include "loader/wall-cell.hpp" #include "src/world.hpp" #include "src/scenery.hpp" -#include "src/path-search.hpp" +#include "src/path-search-bbox.hpp" #include <Magnum/Math/Functions.h> namespace floormat { using namespace floormat::detail_astar; -template<typename T> using bbox = path_search::bbox<T>; using pred = path_search::pred; +using detail_astar::bbox; namespace { |