From 8cf389aaf748c77aecda0b3a3773c45053b0f231 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Fri, 25 Oct 2024 13:02:38 +0200 Subject: implement all ALGA features --- DijkstraPathfinder.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'DijkstraPathfinder.h') diff --git a/DijkstraPathfinder.h b/DijkstraPathfinder.h index 5fb1e21..93e6943 100644 --- a/DijkstraPathfinder.h +++ b/DijkstraPathfinder.h @@ -9,13 +9,11 @@ class DijkstraPathfinder : public Pathfinder { public: virtual void find_between(const XY &, const XY &); - virtual const Path & get_path(); protected: virtual void clear(); private: - Path solution; XY end; struct Node { -- cgit v1.2.3