#include #include #include namespace kurator { namespace campaign { namespace scenarios { Scenario example() { int id = 0; Scenario scenario {"Example", 12000, {}}; for (int team = 0; team < 2; ++team) { for (int i = 0; i < 2; ++i) scenario.ships.push_back(ShipConfig{{id++}, team, "Anvil", {"ChargeLaser", "ChargeLaser"}}); for (int i = 0; i < 3; ++i) scenario.ships.push_back(ShipConfig{{id++}, team, "Warbringer", {"ChargeLaser"}}); for (int i = 0; i < 5; ++i) scenario.ships.push_back(ShipConfig{{id++}, team, "Eclipse", {"ChargeLaser"}}); } return scenario; } } // namespace scenarios } // namespace campaign } // namespace kurator