Josh Davy / Mbed 2 deprecated Flip

Dependencies:   mbed el17jd

Revision:
6:2ca1516ec1e2
Child:
7:68e06dda79f7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Level/Level.h	Wed Apr 10 11:03:07 2019 +0000
@@ -0,0 +1,28 @@
+#ifndef LEVEL_H
+#define LEVEL_H
+
+#include "mbed.h"
+#include "N5110.h"
+#include "Gamepad.h"
+#include "Bitmap.h"
+
+#define GRAVITY 2
+/*Level Class*/
+
+
+class Level {
+
+public:
+    Level();
+    ~Level();
+    void init(Vector2D blocks [][2],int number_of_blocks);
+    void render(N5110 &lcd);
+
+
+    
+private:  
+    Vector2D   _blocks [][2] ;
+    int _number_of_blocks;
+};
+
+#endif
\ No newline at end of file