├── .gitignore ├── .prettierrc ├── backend.js ├── package.json ├── public ├── img │ └── webb-dark.png ├── index.html └── js │ ├── classes │ ├── Enemy.js │ ├── Particle.js │ ├── Player.js │ └── Projectile.js │ ├── eventListeners.js │ └── frontend.js └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | .ds_store 2 | node_modules -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriscourses/multiplayer-game/HEAD/.prettierrc -------------------------------------------------------------------------------- /backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriscourses/multiplayer-game/HEAD/backend.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriscourses/multiplayer-game/HEAD/package.json -------------------------------------------------------------------------------- /public/img/webb-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriscourses/multiplayer-game/HEAD/public/img/webb-dark.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriscourses/multiplayer-game/HEAD/public/index.html -------------------------------------------------------------------------------- /public/js/classes/Enemy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriscourses/multiplayer-game/HEAD/public/js/classes/Enemy.js -------------------------------------------------------------------------------- /public/js/classes/Particle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriscourses/multiplayer-game/HEAD/public/js/classes/Particle.js -------------------------------------------------------------------------------- /public/js/classes/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriscourses/multiplayer-game/HEAD/public/js/classes/Player.js -------------------------------------------------------------------------------- /public/js/classes/Projectile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriscourses/multiplayer-game/HEAD/public/js/classes/Projectile.js -------------------------------------------------------------------------------- /public/js/eventListeners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriscourses/multiplayer-game/HEAD/public/js/eventListeners.js -------------------------------------------------------------------------------- /public/js/frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriscourses/multiplayer-game/HEAD/public/js/frontend.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriscourses/multiplayer-game/HEAD/readme.md --------------------------------------------------------------------------------