ELEC2645 (2018/19) / Mbed 2 deprecated el17dg

Dependencies:   mbed

Fork of el17dg by Dmitrijs Griskovs

Revision:
23:240bc00ef25b
Parent:
22:4dc3c95f2146
Child:
24:0570cb4b92d7
diff -r 4dc3c95f2146 -r 240bc00ef25b game/game.h
--- a/game/game.h	Wed Mar 27 16:35:52 2019 +0000
+++ b/game/game.h	Sun Mar 31 01:04:59 2019 +0000
@@ -5,18 +5,16 @@
 
 class Game{
 public:
-    Game();
     bool updateAndDraw();  
     void startNewGame();
 private:
     void collideEnemiesAndBlasts();
-    void fireNewBlast();
     void collideEnemiesBlastsAndPlayer();
-    void updateAndDrawBlasts();
-    void playerShipMovement();
+    void collideEnemiesAndPlayer();
+    void gameOver();
 
-    CircleBounds player_bounds;
-    CircleBounds blast_bounds;
+    //CircleBounds player_bounds;
+    //CircleBounds blast_bounds;
 };