A "simple" Snake, done as my final JS class project back in DUT
https://snek.s.codinget.me
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
239 B
16 lines
239 B
5 years ago
|
{
|
||
|
"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,20],
|
||
|
[60,19],
|
||
|
[60,18]
|
||
|
]
|
||
|
}
|