int main(int argc, const char * argv[]) { // insert code here... printWall(); printf("请使用wasd+enter移动\n"); x=0; y=5; char step; while (finished==0) { scanf("%c",&step); run(step); } return 0; }
void Maze::printStepMap() const { printWall(stepMap); }
void go(){ system("clear"); printWall(); }