-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmap.js
More file actions
24 lines (22 loc) · 663 Bytes
/
map.js
File metadata and controls
24 lines (22 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const map = [
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,0,0,2,2,2,2,2,2,2,2,2,0,0,1],
[1,0,1,2,1,2,1,2,1,2,1,2,1,0,1],
[1,2,2,2,2,2,2,2,2,2,2,2,2,2,1],
[1,2,1,2,1,2,1,2,1,2,1,2,1,2,1],
[1,2,2,2,2,2,2,2,2,2,2,2,2,2,1],
[1,2,1,2,1,2,1,2,1,2,1,2,1,2,1],
[1,2,2,2,2,2,2,2,2,2,2,2,2,2,1],
[1,2,1,2,1,2,1,2,1,2,1,2,1,2,1],
[1,2,2,2,2,2,2,2,2,2,2,2,2,2,1],
[1,2,1,2,1,2,1,2,1,2,1,2,1,2,1],
[1,2,2,2,2,2,2,2,2,2,2,2,2,2,1],
[1,0,1,2,1,2,1,2,1,2,1,2,1,0,1],
[1,0,0,2,2,2,2,2,2,2,2,2,0,0,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]
]
function getMap()
{
return JSON.parse(JSON.stringify(map));
}
module.exports = {getMap}