summaryrefslogtreecommitdiff
path: root/game/network/routeWalker.h
diff options
context:
space:
mode:
Diffstat (limited to 'game/network/routeWalker.h')
-rw-r--r--game/network/routeWalker.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/game/network/routeWalker.h b/game/network/routeWalker.h
index e0577ae..ebdf66e 100644
--- a/game/network/routeWalker.h
+++ b/game/network/routeWalker.h
@@ -9,10 +9,10 @@ public:
RouteWalker();
- Solution findRouteTo(const Link::End & currentEnd, const NodePtr & dest);
+ Solution findRouteTo(const Link::End & currentEnd, const Node::Ptr & dest);
private:
- void findRouteTo(const Link::End & currentEnd, const NodePtr & dest, float length);
+ void findRouteTo(const Link::End & currentEnd, const Node::Ptr & dest, float length);
std::set<const Link::End *> visited;
Solution bestSolution, currentSolution;