Class used to run the maze game loop.

Revision:
3:4b82cb2e0618
Parent:
2:cbce5d35e7d6
Child:
4:93fd2f3bd0de
--- a/MazeEngine.h	Wed Apr 19 20:16:56 2017 +0000
+++ b/MazeEngine.h	Fri Apr 21 12:47:52 2017 +0000
@@ -38,10 +38,14 @@
     void readAccelerometer(FXOS8700CQ &device);
     void update(N5110 &lcd);
     void draw(N5110 &lcd);
+    
     void checkWallCollision(N5110 &lcd);
+    bool checkGoal(N5110 &lcd);
     
     void getMazeArray(N5110 &lcd);
     
+    bool _goal;
+    
 private:
     
     Maze _maze;