summaryrefslogtreecommitdiff
path: root/campaign/src/Scenario.cpp
blob: cd5a1c628d57032d5083f5dadde8046a29a5a0ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <kurator/campaign/Scenario.h>


namespace kurator
{
namespace campaign
{


int
Scenario::total_teams() const
{
	int last_team = 0;
	for (const auto& ship : ships) {
		if (ship.team > last_team)
			last_team = ship.team;
	}
	return last_team + 1;
}


}  // namespace campaign
}  // namespace kurator