diff options
Diffstat (limited to 'floormat')
-rw-r--r-- | floormat/main.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/floormat/main.hpp b/floormat/main.hpp index cf88510a..11a42bd7 100644 --- a/floormat/main.hpp +++ b/floormat/main.hpp @@ -22,6 +22,7 @@ struct wall_mesh; struct anim_mesh; struct texture_unit_cache; class path_search; +struct astar; struct floormat_main { @@ -80,6 +81,7 @@ struct floormat_main virtual struct texture_unit_cache& texture_unit_cache() = 0; virtual path_search& search() = 0; + virtual struct astar& astar() = 0; [[nodiscard]] static floormat_main* create(floormat_app& app, fm_settings&& options); [[maybe_unused]] static void debug_break(); |