├── .github ├── FUNDING.yml ├── pull_request_template.md └── workflows │ └── issue-auto-reply.yaml ├── Code_of_Conduct.md ├── Contribution.md ├── LICENSE ├── README.md ├── breakout_game_new.jpg ├── breakout_game_old.JPG ├── index.html ├── script.js ├── scripts ├── config.js ├── controls.js ├── gameplay.js └── rendering.js ├── styles.css └── utils ├── utilsColor.js └── utilsCopyright.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhanushNehru/breakout-game/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhanushNehru/breakout-game/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/issue-auto-reply.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhanushNehru/breakout-game/HEAD/.github/workflows/issue-auto-reply.yaml -------------------------------------------------------------------------------- /Code_of_Conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhanushNehru/breakout-game/HEAD/Code_of_Conduct.md -------------------------------------------------------------------------------- /Contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhanushNehru/breakout-game/HEAD/Contribution.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhanushNehru/breakout-game/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhanushNehru/breakout-game/HEAD/README.md -------------------------------------------------------------------------------- /breakout_game_new.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhanushNehru/breakout-game/HEAD/breakout_game_new.jpg -------------------------------------------------------------------------------- /breakout_game_old.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhanushNehru/breakout-game/HEAD/breakout_game_old.JPG -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhanushNehru/breakout-game/HEAD/index.html -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhanushNehru/breakout-game/HEAD/script.js -------------------------------------------------------------------------------- /scripts/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhanushNehru/breakout-game/HEAD/scripts/config.js -------------------------------------------------------------------------------- /scripts/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhanushNehru/breakout-game/HEAD/scripts/controls.js -------------------------------------------------------------------------------- /scripts/gameplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhanushNehru/breakout-game/HEAD/scripts/gameplay.js -------------------------------------------------------------------------------- /scripts/rendering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhanushNehru/breakout-game/HEAD/scripts/rendering.js -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhanushNehru/breakout-game/HEAD/styles.css -------------------------------------------------------------------------------- /utils/utilsColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhanushNehru/breakout-game/HEAD/utils/utilsColor.js -------------------------------------------------------------------------------- /utils/utilsCopyright.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhanushNehru/breakout-game/HEAD/utils/utilsCopyright.js --------------------------------------------------------------------------------