this code is completely restructured, but should do the same thing. did not want to directly commit, since it may not work at all. compiles though.

Dependencies:   AVEncoder mbed-src-AV

Fork of Test by 2015-2016_Mouserat

maze.h

Committer:
jimmery
Date:
2015-12-15
Revision:
13:5f08195456a4

File content as of revision 13:5f08195456a4:

// IDEA IS TO HAVE THE ALGORITHM DONE IN HERE.
#ifndef MAZE_H
#define MAZE_H

// MAZE DIMENSIONS. 
const int MAX_ROW = 16;
const int MAX_COL = MAX_ROW;

#endif