
Neural Network Snake
1{ 2 "snake": { 3 "length": 1, 4 "head": { 5 "x": 10, 6 "y": 10 7 } 8 }, 9 "food": {10 "x": 15,11 "y": 1512 },13 "state": {14 "score": 0,15 "running": false,16 "direction": "right"17 },18 "modifiers": {19 "gravityInverted": false,20 "speedMultiplier": 1,21 "scale": 1,22 "aiAssist": false23 },24 "ai": {25 "latency": 0,26 "enabled": false27 }28}