├── LICENSE ├── README.md ├── assets ├── apple.svg ├── eat.mp3 ├── favicon.ico ├── gameover.mp3 ├── off.svg └── on.svg ├── index.html ├── scripts └── script.js └── styles └── style.css /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddVital/Snake-game/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddVital/Snake-game/HEAD/README.md -------------------------------------------------------------------------------- /assets/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddVital/Snake-game/HEAD/assets/apple.svg -------------------------------------------------------------------------------- /assets/eat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddVital/Snake-game/HEAD/assets/eat.mp3 -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddVital/Snake-game/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /assets/gameover.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddVital/Snake-game/HEAD/assets/gameover.mp3 -------------------------------------------------------------------------------- /assets/off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddVital/Snake-game/HEAD/assets/off.svg -------------------------------------------------------------------------------- /assets/on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddVital/Snake-game/HEAD/assets/on.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddVital/Snake-game/HEAD/index.html -------------------------------------------------------------------------------- /scripts/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddVital/Snake-game/HEAD/scripts/script.js -------------------------------------------------------------------------------- /styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddVital/Snake-game/HEAD/styles/style.css --------------------------------------------------------------------------------