Exemple #1
0
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;
}
Exemple #2
0
void Maze::printStepMap() const
{
	printWall(stepMap);
}
Exemple #3
0
void go(){
    system("clear");
    printWall();
}