#ifndef __BOT_H__ #define __BOT_H__ #include "maze.h" class Bot { public: Bot( Maze& m ); bool solve(); private: bool findSolution( Dir dir ); Maze& maze; }; #endif // __BOT_H__