summaryrefslogtreecommitdiff
path: root/game/objective.h
diff options
context:
space:
mode:
Diffstat (limited to 'game/objective.h')
-rw-r--r--game/objective.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/game/objective.h b/game/objective.h
index e4fd6d4..5b3690e 100644
--- a/game/objective.h
+++ b/game/objective.h
@@ -2,6 +2,7 @@
#define OBJECTIVE_H
#include "activity.h"
+#include "network/link.h"
#include <memory>
#include <special_members.hpp>
@@ -15,6 +16,7 @@ public:
[[nodiscard]] virtual Objective * complete() const;
[[nodiscard]] virtual ActivityPtr createActivity() const = 0;
+ [[nodiscard]] virtual Link::Next navigate(Link::Nexts::const_iterator, Link::Nexts::const_iterator) const = 0;
Orders * orders;
};