示例#1
0
文件: main.c 项目: Caoxiann/CCpp2016
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;
}
示例#2
0
void Maze::printStepMap() const
{
	printWall(stepMap);
}
示例#3
0
文件: main.c 项目: Caoxiann/CCpp2016
void go(){
    system("clear");
    printWall();
}