├── .github ├── FUNDING.yml └── workflows │ └── static.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LEARN.md ├── LICENSE ├── README.md ├── SECURITY.md ├── assets ├── audio │ ├── Main_sounds │ │ ├── die.wav │ │ ├── flap.wav │ │ ├── hit.wav │ │ ├── score.wav │ │ └── start.wav │ └── bg_songs │ │ └── bg.mp3 ├── css │ └── style.css ├── images │ ├── brid_img │ │ ├── 1_brid.png │ │ ├── 2_brid.png │ │ └── 3_brid.png │ ├── ground │ │ ├── 1_ground.png │ │ ├── 2_ground.png │ │ ├── background.png │ │ └── ground.png │ ├── pipe_img │ │ ├── botpipe.png │ │ └── toppipe.png │ ├── preview.gif │ └── start&over_game_img │ │ ├── 1_tap.png │ │ ├── 2_tap.png │ │ ├── gameOver.png │ │ └── getready.png └── javascript │ └── index.js └── index.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LEARN.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/audio/Main_sounds/die.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/audio/Main_sounds/die.wav -------------------------------------------------------------------------------- /assets/audio/Main_sounds/flap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/audio/Main_sounds/flap.wav -------------------------------------------------------------------------------- /assets/audio/Main_sounds/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/audio/Main_sounds/hit.wav -------------------------------------------------------------------------------- /assets/audio/Main_sounds/score.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/audio/Main_sounds/score.wav -------------------------------------------------------------------------------- /assets/audio/Main_sounds/start.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/audio/Main_sounds/start.wav -------------------------------------------------------------------------------- /assets/audio/bg_songs/bg.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/audio/bg_songs/bg.mp3 -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/images/brid_img/1_brid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/images/brid_img/1_brid.png -------------------------------------------------------------------------------- /assets/images/brid_img/2_brid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/images/brid_img/2_brid.png -------------------------------------------------------------------------------- /assets/images/brid_img/3_brid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/images/brid_img/3_brid.png -------------------------------------------------------------------------------- /assets/images/ground/1_ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/images/ground/1_ground.png -------------------------------------------------------------------------------- /assets/images/ground/2_ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/images/ground/2_ground.png -------------------------------------------------------------------------------- /assets/images/ground/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/images/ground/background.png -------------------------------------------------------------------------------- /assets/images/ground/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/images/ground/ground.png -------------------------------------------------------------------------------- /assets/images/pipe_img/botpipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/images/pipe_img/botpipe.png -------------------------------------------------------------------------------- /assets/images/pipe_img/toppipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/images/pipe_img/toppipe.png -------------------------------------------------------------------------------- /assets/images/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/images/preview.gif -------------------------------------------------------------------------------- /assets/images/start&over_game_img/1_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/images/start&over_game_img/1_tap.png -------------------------------------------------------------------------------- /assets/images/start&over_game_img/2_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/images/start&over_game_img/2_tap.png -------------------------------------------------------------------------------- /assets/images/start&over_game_img/gameOver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/images/start&over_game_img/gameOver.png -------------------------------------------------------------------------------- /assets/images/start&over_game_img/getready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/images/start&over_game_img/getready.png -------------------------------------------------------------------------------- /assets/javascript/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/assets/javascript/index.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSDmark/FlappyBrid/HEAD/index.html --------------------------------------------------------------------------------