summaryrefslogtreecommitdiff
path: root/battles/src/scenarios.cpp
blob: ffb4f27e9ea89bdf47e4a439fdedff1fecb5932c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include <kurator/battles/scenarios.h>

#include <kurator/battles/Scenario.h>
#include <kurator/universe/ShipType.h>


namespace kurator
{
namespace battles
{
namespace scenarios
{


Scenario
example()
{
	const universe::ShipType halo {"halo", 4.0};
	const universe::ShipType cube {"cube", 10.0};
	const universe::ShipType bell {"bell", 10.0};
	return {
		"example",
		{
			{0, halo, {}},
			{0, halo, {}},
			{0, cube, {}},
			{0, bell, {}},
			{1, bell, {}},
			{1, cube, {}},
			{1, cube, {}},
			{1, bell, {}},
		},
	};
}


}  // namespace scenarios
}  // namespace battles
}  // namespace kurator