ELEC2645 (2018/19) / Mbed 2 deprecated el17set_

Dependencies:   mbed

Revision:
4:999ab7216827
Parent:
3:72e0f4d267ed
--- a/Game/Game.h	Thu Apr 11 14:53:08 2019 +0000
+++ b/Game/Game.h	Sat Apr 13 16:45:30 2019 +0000
@@ -12,17 +12,16 @@
 public:
     Game();
     ~Game();
-    void init(int momentum);
+    void init();
     void read_input(Gamepad &pad);
     void drawSprite(N5110 &lcd);
     void movement(Gamepad &pad);
     
 private:
     Smiley smiley;
-    Platform platform;
-    int momen;
+    int momenx;
+    int momeny;
     Direction dir;
-    float mag;
     
 };