├── css └── index.css ├── index.html ├── js ├── food.js ├── game.js └── snake.js └── lib ├── jquery-1.12.4.js └── jquery-1.12.4.min.js /css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooir-dev/snake/HEAD/css/index.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooir-dev/snake/HEAD/index.html -------------------------------------------------------------------------------- /js/food.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooir-dev/snake/HEAD/js/food.js -------------------------------------------------------------------------------- /js/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooir-dev/snake/HEAD/js/game.js -------------------------------------------------------------------------------- /js/snake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooir-dev/snake/HEAD/js/snake.js -------------------------------------------------------------------------------- /lib/jquery-1.12.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooir-dev/snake/HEAD/lib/jquery-1.12.4.js -------------------------------------------------------------------------------- /lib/jquery-1.12.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooir-dev/snake/HEAD/lib/jquery-1.12.4.min.js --------------------------------------------------------------------------------