diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-10-06 11:12:54 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-10-06 11:13:06 +0200 |
commit | fe0f4b6e959e834c1f0fe45e14c4f953f5b85aac (patch) | |
tree | 316f0f04b78c909a6ea999b8d9bb7a5b0dbb951d | |
parent | a1fc32ebc9507965a241e5d177d5f9d9693b3e1d (diff) |
cc
-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; |