Laila Al Badwawi 200906179 SpaceInvaders I declare this my own independent work and understand the university rules on plagiarism.

Dependencies:   mbed

Revision:
128:a3f581b8461c
Parent:
98:663e584183bf
Child:
129:a5b90c497f9c
--- a/Alien/Alien.cpp	Sun May 05 15:33:46 2019 +0000
+++ b/Alien/Alien.cpp	Mon May 06 00:11:06 2019 +0000
@@ -1,4 +1,5 @@
 #include "Alien.h"
+#include "Bullet.h"
 
 
 Alien::Alien()
@@ -29,5 +30,7 @@
 void  Alien::update(Direction d,float mag)
 {
     _speed_alien = int(mag*10.0f);
+    
+    if 
 
 }