diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-25 05:37:23 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-25 05:37:23 +0100 |
commit | 807b4ba44792a159eec3322a91535bbd3649ef44 (patch) | |
tree | 274d96a09753486d8b98873cbd151afa7880c2be /src | |
parent | 586deb97483992f20353abfb630dea2e7d476b87 (diff) |
clean up more headers
Diffstat (limited to 'src')
-rw-r--r-- | src/search-astar.cpp | 1 | ||||
-rw-r--r-- | src/search-astar.hpp | 2 | ||||
-rw-r--r-- | src/search.hpp | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/src/search-astar.cpp b/src/search-astar.cpp index eb2812a2..7f3a9da6 100644 --- a/src/search-astar.cpp +++ b/src/search-astar.cpp @@ -2,6 +2,7 @@ #include "search-bbox.hpp" #include "search-constants.hpp" #include "search-cache.hpp" +#include "search-result.hpp" #include "compat/format.hpp" #include "compat/vector-wrapper.hpp" #include "compat/heap.hpp" diff --git a/src/search-astar.hpp b/src/search-astar.hpp index a56b7f53..dbd89892 100644 --- a/src/search-astar.hpp +++ b/src/search-astar.hpp @@ -8,6 +8,8 @@ namespace floormat::Search { struct cache; } namespace floormat { +struct point; + class astar { public: diff --git a/src/search.hpp b/src/search.hpp index b70dc049..c4ffc1eb 100644 --- a/src/search.hpp +++ b/src/search.hpp @@ -2,7 +2,6 @@ #include "tile-constants.hpp" #include "global-coords.hpp" #include "object-id.hpp" -#include "search-result.hpp" #include "search-pred.hpp" #include <array> |