Readme file + update in maze.hpp

This commit is contained in:
2025-04-30 19:58:11 +03:00
parent 726bda2a80
commit 78f03cbfb5
2 changed files with 34 additions and 2 deletions

View File

@@ -26,9 +26,10 @@ public:
bool test_mode;
Maze(bool flag, int steps);
int get_moves_left() const;
bool is_wall(int node, int direction) const;
void set_moves_left(int _steps);
bool is_wall(int node, int direction) const;
};
#endif