Error : there are no enemy. use enemy = hero.findNearestEnemy(); = line 15
int main() {
auto ordersGiven = 0;
while (ordersGiven < 5) {
// Move down 10 meters.
hero.moveXY(hero.pos.x, hero.pos.y - 10);
// Order your ally to “Attack!” with hero.say
// They can only hear you if you are on the X.
hero.say(“Attack!”);
// Be sure to increment ordersGiven!
ordersGiven += 1;
}
while(true) {
enemy = hero.findNearestEnemy();
// When you're done giving orders, join the attack.
hero.attack(enemy);
}
return 0;