diff options
Diffstat (limited to 'src/path-search.hpp')
-rw-r--r-- | src/path-search.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/path-search.hpp b/src/path-search.hpp index 4b6e8a01..23401106 100644 --- a/src/path-search.hpp +++ b/src/path-search.hpp @@ -82,10 +82,11 @@ public: struct obj_position { Vector2 center, size; }; + template<typename T> struct bbox { VectorTypeFor<2, T> min, max; }; + chunk_cache cache; Array<global_coords> output; - template<typename T> struct bbox { VectorTypeFor<2, T> min, max; }; using pred = fu2::function_view<path_search_continue(collision_data) const>; static const pred& never_continue() noexcept; |