Implement basic functions

Dependencies:   mbed N5110

Revision:
0:64bd9f996099
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Wall/Wall.h	Fri May 03 13:05:24 2019 +0000
@@ -0,0 +1,29 @@
+#ifndef WALL_H
+#define WALL_H
+
+#include "mbed.h"
+#include "N5110.h"
+#include "Gamepad.h"
+
+class Wall
+{
+public:
+    
+    Wall();
+    ~Wall();
+    void init();
+    int* draw(N5110 &lcd);
+    int* _ab;
+
+private:
+
+    int _a1;
+    int _a2;
+    int _a3;
+    int _b1;
+    int _b2;
+    int _b3;
+    int _score;
+};
+
+#endif
\ No newline at end of file