diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-25 04:45:17 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-25 04:48:09 +0100 |
commit | 50e42d74c9b25e2ec4c6b9fd3434f431c0b5c3d9 (patch) | |
tree | 826691d937867e21587fd87adb2de6d34175eecd /src/path-search-pred.hpp | |
parent | 4746d19f7a749808391d1ad7ee6bd86950ba064f (diff) |
rename path_search -> search
Diffstat (limited to 'src/path-search-pred.hpp')
-rw-r--r-- | src/path-search-pred.hpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/path-search-pred.hpp b/src/path-search-pred.hpp deleted file mode 100644 index f0f99c3e..00000000 --- a/src/path-search-pred.hpp +++ /dev/null @@ -1,18 +0,0 @@ -#pragma once -#include "compat/function2.fwd.hpp" -#include "collision.hpp" - -namespace floormat { - -enum class path_search_continue : bool { pass = false, blocked = true }; - -} // namespace floormat - -namespace floormat::detail_astar { - -using pred = fu2::function_view<path_search_continue(collision_data) const>; - -const pred& never_continue() noexcept; -const pred& always_continue() noexcept; - -} // namespace floormat::detail_astar |