├── .github └── FUNDING.yml ├── README.md ├── css └── style.css ├── index.html └── js └── main.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesCreativeContent/Rigley2-FlappyBug/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesCreativeContent/Rigley2-FlappyBug/HEAD/README.md -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: black; 3 | } 4 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesCreativeContent/Rigley2-FlappyBug/HEAD/index.html -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesCreativeContent/Rigley2-FlappyBug/HEAD/js/main.js --------------------------------------------------------------------------------