summaryrefslogtreecommitdiffhomepage
path: root/src/search-astar.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/search-astar.hpp')
-rw-r--r--src/search-astar.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/search-astar.hpp b/src/search-astar.hpp
index dbd89892..c31b348f 100644
--- a/src/search-astar.hpp
+++ b/src/search-astar.hpp
@@ -1,14 +1,17 @@
#pragma once
#include "compat/safe-ptr.hpp"
-#include "search.hpp"
#include "search-constants.hpp"
+#include "search-pred.hpp"
+#include "object-id.hpp"
#include <Corrade/Containers/Array.h>
namespace floormat::Search { struct cache; }
namespace floormat {
+class world;
struct point;
+struct path_search_result;
class astar
{