diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-24 01:23:36 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-24 02:51:37 +0100 |
commit | 24b89cc7d168d93c154a22f8bc95c8a3afc2f54a (patch) | |
tree | 9a1969665a40f532a09621bac39264764a7ec714 /main | |
parent | 7aed83758b173dd0fecf45dc18fcbbe9a522e93b (diff) |
move astar header to its own file
Diffstat (limited to 'main')
-rw-r--r-- | main/ctor.cpp | 2 | ||||
-rw-r--r-- | main/main-impl.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/main/ctor.cpp b/main/ctor.cpp index 11bc8cb9..e40eb5a3 100644 --- a/main/ctor.cpp +++ b/main/ctor.cpp @@ -1,6 +1,6 @@ #include "main-impl.hpp" #include "compat/fpu.hpp" -#include "src/path-search.hpp" +#include "src/astar.hpp" #include <Corrade/Containers/GrowableArray.h> namespace floormat { diff --git a/main/main-impl.cpp b/main/main-impl.cpp index 0ce2b5fb..689c249b 100644 --- a/main/main-impl.cpp +++ b/main/main-impl.cpp @@ -1,5 +1,5 @@ #include "main-impl.hpp" -#include "src/path-search.hpp" +#include "src/astar.hpp" #include <Corrade/Utility/Move.h> #include <Magnum/Platform/Sdl2Application.h> |