-
Notifications
You must be signed in to change notification settings - Fork 0
/
mazelayout2.h
30 lines (26 loc) · 1.15 KB
/
mazelayout2.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
// Created by Keita Nonaka on 2/7/18.
//
#ifndef CS255_MAZELAYOUT2_H
#define CS255_MAZELAYOUT2_H
#endif //CS255_MAZELAYOUT2_H
//Establish fixed maze '#' is a wall, '.' is a path
char maze[12][12] = {
{ '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#' },
{ '#', '.', '.', '.', '#', '.', '.', '#', '.', '.', '.', '#' },
{ '.', '.', '#', '.', '#', '.', '#', '#', '.', '#', '.', '#' },
{ '#', '#', '#', '.', '.', '.', '.', '.', '.', '#', '.', '#' },
{ '#', '.', '.', '.', '.', '#', '#', '#', '.', '#', '.', '.' },
{ '#', '#', '#', '#', '.', '#', '.', '#', '.', '#', '.', '#' },
{ '#', '.', '.', '#', '.', '#', '.', '#', '.', '#', '#', '#' },
{ '#', '#', '.', '#', '.', '#', '.', '#', '.', '#', '.', '#' },
{ '#', '.', '.', '.', '.', '.', '.', '#', '.', '#', '.', '#' },
{ '#', '#', '#', '#', '#', '#', '.', '#', '.', '#', '.', '#' },
{ '#', '.', '.', '.', '.', '.', '.', '#', '.', '.', '.', '#' },
{ '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#' }
};
//set starting and ending points
int startRow = 2;
int startCol = 0;
int endRow = 4;
int endCol = 11;