diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-10-13 20:27:46 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-10-13 20:27:46 +0100 |
commit | fab2d34959c52383f6be3cb6634c6776b41f62a8 (patch) | |
tree | cbf8f4b717d50af882689b5e012c2e3737f44077 /game/objectives | |
parent | Inheritable of standard typedefs (diff) | |
download | ilt-fab2d34959c52383f6be3cb6634c6776b41f62a8.tar.bz2 ilt-fab2d34959c52383f6be3cb6634c6776b41f62a8.tar.xz ilt-fab2d34959c52383f6be3cb6634c6776b41f62a8.zip |
Standard typedefs for Node
Diffstat (limited to 'game/objectives')
-rw-r--r-- | game/objectives/goto.cpp | 2 | ||||
-rw-r--r-- | game/objectives/goto.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/game/objectives/goto.cpp b/game/objectives/goto.cpp index 8581a2d..2d9ce75 100644 --- a/game/objectives/goto.cpp +++ b/game/objectives/goto.cpp @@ -9,7 +9,7 @@ #include <numeric> #include <vector> -GoTo::GoTo(Orders * o, const Link::End & cp, float d, const NodePtr & dest) : +GoTo::GoTo(Orders * o, const Link::End & cp, float d, const Node::Ptr & dest) : Objective(o), links(RouteWalker().findRouteTo(cp, dest)), startDist {d} { } diff --git a/game/objectives/goto.h b/game/objectives/goto.h index acd5e48..ad51ecf 100644 --- a/game/objectives/goto.h +++ b/game/objectives/goto.h @@ -8,7 +8,7 @@ class Orders; class GoTo : public Objective { public: - GoTo(Orders * os, const Link::End &, float, const NodePtr & dest); + GoTo(Orders * os, const Link::End &, float, const Node::Ptr & dest); [[nodiscard]] ActivityPtr createActivity() const override; [[nodiscard]] Link::Next navigate(Link::Nexts::const_iterator, Link::Nexts::const_iterator) const override; |