Kostadin Chakarov / Mbed 2 deprecated el17kec

Dependencies:   mbed

Revision:
13:3585d2ea4ff4
Parent:
12:b3ec47d606a5
Child:
14:4b05b5c2a355
--- a/Map/Map.h	Thu May 09 11:41:58 2019 +0000
+++ b/Map/Map.h	Thu May 09 11:55:47 2019 +0000
@@ -86,7 +86,7 @@
     
     /** Gives the powerup effect to the player */
     virtual void giveBonus(Paddle &paddle, Ball &ball) {}
-    /** Draws the powerup on the LCD */
+    /** Chooses which powerup to draw on the LCD depending on its type */
     virtual void draw(N5110 &lcd, PowerUp &pUp);
 };
 
@@ -148,7 +148,7 @@
     void giveBonus(Paddle &paddle, Ball &ball) {
         _pUpType->giveBonus(paddle, ball);
         }
-    /** Draws the powerup */
+    /** Draws each powerup on the LCD after type has been assigned*/
     virtual void draw(N5110 &lcd);
 };