summaryrefslogtreecommitdiff
path: root/game/objectives/freeroam.h
blob: ef74eb70b169643d272c40f2dce6089448d175b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <game/activity.h>
#include <game/network/link.h>
#include <game/objective.h>

class FreeRoam : public Objective {
public:
	using Objective::Objective;

	[[nodiscard]] ActivityPtr createActivity() const override;
	[[nodiscard]] Link::Next navigate(Link::Nexts::const_iterator, Link::Nexts::const_iterator) const override;
};