├── README.md ├── algorithms └── genetic.js ├── index.html ├── index.js ├── libraries ├── p5.dom.js ├── p5.js └── p5.sound.js ├── manager └── manager.js ├── neuron └── brain.js ├── prototypes ├── apple.js ├── cell.js └── snake.js └── styles └── base.css /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohan-pherones/snake-game-self-played/HEAD/README.md -------------------------------------------------------------------------------- /algorithms/genetic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohan-pherones/snake-game-self-played/HEAD/algorithms/genetic.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohan-pherones/snake-game-self-played/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohan-pherones/snake-game-self-played/HEAD/index.js -------------------------------------------------------------------------------- /libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohan-pherones/snake-game-self-played/HEAD/libraries/p5.dom.js -------------------------------------------------------------------------------- /libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohan-pherones/snake-game-self-played/HEAD/libraries/p5.js -------------------------------------------------------------------------------- /libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohan-pherones/snake-game-self-played/HEAD/libraries/p5.sound.js -------------------------------------------------------------------------------- /manager/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohan-pherones/snake-game-self-played/HEAD/manager/manager.js -------------------------------------------------------------------------------- /neuron/brain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohan-pherones/snake-game-self-played/HEAD/neuron/brain.js -------------------------------------------------------------------------------- /prototypes/apple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohan-pherones/snake-game-self-played/HEAD/prototypes/apple.js -------------------------------------------------------------------------------- /prototypes/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohan-pherones/snake-game-self-played/HEAD/prototypes/cell.js -------------------------------------------------------------------------------- /prototypes/snake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohan-pherones/snake-game-self-played/HEAD/prototypes/snake.js -------------------------------------------------------------------------------- /styles/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shohan-pherones/snake-game-self-played/HEAD/styles/base.css --------------------------------------------------------------------------------