/* | |
Name:Wong Pui Shan | |
Sdutent ID:52611804 | |
program: AScISD | |
Name: HAR Chiu Kwong Samson | |
Sdutent ID:52629360 | |
program: AScISD | |
Name: LAM Cheuk Man | |
Sdutent ID:52621140 | |
program: AScISD | |
Name:KO Jeffrey KO | |
Sdutent ID:525 695 30 | |
program: AScISD | |
*/ | |
using namespace std; | |
class Maze | |
{ | |
private: | |
string* str; | |
int totalDot; | |
public: | |
void printMaze(int gameLevel); | |
char Maze::getMazeArray(int x, int y) const; | |
void Maze::setMazeArray(int x, int y, char symbol); | |
void Maze::killArray(); | |
int getTotalDot(); | |
void setTotalDot(int n); | |
void checkTotalDot(); | |
void mazeReset(int gameLevel); | |
}; | |