MiniGame-Madness
|
A class that represents the maze game. More...
#include <maze.h>
Public Member Functions | |
Maze () | |
Maze (int width, int height) | |
A class that represents the maze game.
This class provides methods to generate the maze, handle player moves, and check game conditions.
Maze::Maze | ( | ) |
Default constructor for maze class.
Generates a 21 by 21 node maze.
Maze::Maze | ( | int | width, |
int | height | ||
) |
Constructor for Maze class.
width | - The width of the maze. |
height | - The height of the maze. |