Kostadin Chakarov / Mbed 2 deprecated el17kec

Dependencies:   mbed

Revision:
5:12c179da4788
Child:
6:39bda45efeed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Map/Map.h	Tue Mar 26 09:16:35 2019 +0000
@@ -0,0 +1,35 @@
+#ifndef MAP_H
+#define MAP_H
+
+#include "mbed.h"
+#include "N5110.h"
+#include "Gamepad.h"
+#include "PlayerControl.h"
+#include "Ball.h"
+
+/** Map Class
+@author Kostadin Chakarov, University of Leeds
+@brief Creates the map in the Breakout++ game 
+@date March 2019
+*/ 
+
+struct Centerpoints 
+{
+    int x;
+    int y;
+};
+
+class Map
+{
+
+public:
+     Map();
+    ~Map();
+    void setCenterpoints();
+    void drawMap(N5110 &lcd);
+    
+private:
+
+
+};
+#endif
\ No newline at end of file