Initial publish

Dependencies:   mbed

Fork of el17dg by Dmitrijs Griskovs

Revision:
33:c623c6d5ed16
Parent:
32:5403bb974294
Child:
34:754915ce9de5
--- a/game/enemies.h	Fri Apr 26 13:09:03 2019 +0000
+++ b/game/enemies.h	Mon Apr 29 08:10:52 2019 +0000
@@ -1,8 +1,10 @@
 #ifndef ENEMIES_H
 #define ENEMIES_H
 
+#include "collision_lib.h"
+
+
 #include "constants.h"
-#include "geometry.h"
 #include "game.h"
 
 /** A bool that changes states between whehter to go up or down in y-direction.*/
@@ -74,7 +76,6 @@
         
         if (pos.x < 0) {
             GameGlobals::game_score -= 50;
-            GameGlobals::score_count_for_difficulty -= 50; 
             active = false;
         }
     }