Class containing all the bitmaps for the 10 different mazes used throughout the game.

Revision:
0:d5a32831fa28
Child:
1:8ed19eb9e7e5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Maze.h	Tue Apr 04 10:30:22 2017 +0000
@@ -0,0 +1,33 @@
+//
+//  maze.h
+//  
+//
+//  Created by Max Houghton on 19/03/2017.
+//
+//
+
+#ifndef MAZE_H
+#define MAZE_H
+
+#include "mbed.h"
+#include "N5110.h"
+
+class Maze
+{
+    
+public:
+    
+    Maze();
+    ~Maze();
+    
+    void drawBox(N5110 &lcd);
+    void drawTest(N5110 &lcd);
+    void drawMazeOne(N5110 &lcd);
+    void drawMazeTwo(N5110 &lcd);
+
+private:
+    
+    
+};
+
+#endif /* MAZE_H */
\ No newline at end of file