From 845ad4dd0de448328f7fe7b1772cbf176f2b2131 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sun, 10 Jan 2016 16:57:18 +0100 Subject: [PATCH] Aggiunta funzione per trovare un nemico all'interno della lista. --- main.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/main.cpp b/main.cpp index 87ecd98..6cedfcb 100644 --- a/main.cpp +++ b/main.cpp @@ -639,6 +639,20 @@ void tick(Enemy* list[ENEMIES_IN_LEVEL]) } } +//Trova il puntatore al nemico in una certa posizione +Enemy* find(Enemy* list[ENEMIES_IN_LEVEL], int x, int y) +{ + for(int e=0; ex == x && list[e]->y == y && list[e]->alive) + { + return list[e]; + } + } + return NULL; +} + int main() { Enemy* list[ENEMIES_IN_LEVEL]; //Lista di tutti i nemici nel livello