Start navigation inside project

This commit is contained in:
2020-03-23 14:09:28 +01:00
parent a6952b8dda
commit 6147311aaa
5 changed files with 142 additions and 0 deletions

16
levels/1.json Normal file
View File

@ -0,0 +1,16 @@
{
"dimensions": [80, 40],
"delay": 200,
"walls": [
[5,5], [5,6], [5,7], [5,8], [70, 35], [71, 35], [72, 35]
],
"food": [
[10,10]
],
"snake": [
[60,60],
[60,59],
[60,58]
]
}

18
levels/2.json Normal file
View File

@ -0,0 +1,18 @@
{
"dimensions": [80, 40],
"delay": 200,
"walls": [
[5,5], [5,6], [5,7], [5,8], [70, 35], [71, 35], [72, 35]
],
"food": [
[10,10],
[10,11],
[10,12]
],
"snake": [
[60,60],
[60,59],
[60,58]
]
}