-
Notifications
You must be signed in to change notification settings - Fork 0
/
mazelayout3.h
21 lines (20 loc) · 1006 Bytes
/
mazelayout3.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//Establish fixed maze '#' is a wall, '.' is a path
char maze[12][12] = {
{ '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#' },
{ '#', '.', '.', '.', '#', '.', '.', '#', '.', '.', '.', '#' },
{ '#', '.', '#', '.', '#', '.', '#', '#', '.', '#', '.', '#' },
{ '#', '#', '#', '.', '#', '.', '.', '.', '.', '#', '.', '#' },
{ '#', '.', '.', '.', '.', '#', '.', '#', '.', '#', '.', '#' },
{ '#', '.', '#', '#', '.', '#', '.', '#', '.', '#', '.', '#' },
{ '#', '.', '.', '#', '.', '#', '.', '#', '.', '#', '#', '#' },
{ '#', '#', '.', '#', '.', '#', '.', '#', '.', '#', '.', '.' },
{ '#', '.', '.', '.', '.', '.', '.', '#', '.', '#', '.', '#' },
{ '#', '#', '.', '#', '#', '#', '.', '#', '.', '#', '.', '#' },
{ '.', '.', '.', '.', '.', '#', '.', '#', '.', '.', '.', '#' },
{ '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#' }
};
//set starting and ending points DIFFERENT!
int startRow = 10;
int startCol = 0;
int endRow = 7;
int endCol = 11;