├── Breakout Game ├── S03P01_Setting_up_the_project.html ├── S03P02_declaring_the_objects.html ├── S03P03_drawing_ball_and_base.html ├── S03P04_update_bar_position.html ├── S03P05_user_input.html ├── S03P06_making_base_move.html ├── S03P07_update_ball_position.html ├── S03P08_base_ball_collision.html ├── S03P09_enemy_tiles.html ├── S03P10_draw_enemies.html ├── S03P11_ball_enemy_collision.html ├── S03P12_score_life_system.html ├── S03P13_game_over_condition.html ├── S03P14_basic_game_ready.html └── S03P15_increasing_difficulty.html ├── Catch the cupcakes ├── S05P01_Setting_up the project.html ├── S05P02_loading_the_resources.html ├── S05P03_declaring_the_objects.html ├── S05P04_Initializing the game.html ├── S05P05_drawing_the_tiles.html ├── S05P06_drawing_the_catcher.html ├── S05P07_adding_animation_to_catcher.html ├── S05P08_moving_the_catcher.html ├── S05P09_jumping_catcher.html ├── S05P10_jumping_animation.html ├── S05P11_adding_cupcakes.html ├── S05P12_drawing_the_food.html ├── S05P13_all_collision_functions.html ├── S05P14_food_collisions.html ├── S05P15_gravity.html ├── S05P16_increasing_level_and_score.html ├── S05P17_game_over_condition.html ├── S05P18_Game_Start_Restart.html ├── S05P19_Adding_sound.html ├── S05P20_adding_pause_screen.html ├── S05P21_Adding_Fruits.html ├── debug.log ├── images │ ├── background.jpg │ ├── blood.png │ ├── catcher1.png │ ├── catcher2.png │ ├── catcher3.png │ ├── catcher4.png │ ├── food.png │ ├── fruit.png │ └── tile.png └── sound │ ├── drop.mp3 │ └── eat.mp3 ├── Introduction to Canvas & JavaScript ├── S01P01_canvas_intro.html ├── S01P02_drawing_more_elements.html ├── S01P03_canvas_state.html ├── S01P04_javascript_objects.html ├── S01P05_drawing_objects.html ├── S01P06_functions.html ├── S01P07_set_interval.html └── S01P08_event_handling.html ├── LICENSE ├── README.md ├── Snake Game ├── S02P01_Setting_up_project.html ├── S02P02_declaring_objects.html ├── S02P03_initializing_snake_and_food.html ├── S02P04_drawing_snake.html ├── S02P05_user_input.html ├── S02P06_updating_snake_position.html ├── S02P07_making_snake_move.html ├── S02P08_boundary_conditions.html ├── S02P09_drawing_food.html ├── S02P10_snake_food_collision-1.html ├── S02P11_snake_food_collision-2.html ├── S02P12_game_over-1.html ├── S02P13_game_over-2.html ├── S02P14_adding_score.html ├── S02P15_start_on_click.html └── S02P16_finish_game.html └── Tricks ├── S04P01_mouse_movement.html ├── S04P02_shooter_games_part_1.html ├── S04P03_shooter_games_part_2.html ├── S04P04_pause_screen.html ├── S04P05_adding_sound.html └── fire.mp3 /Breakout Game/S03P01_Setting_up_the_project.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Breakout 4 | 5 | 6 | 7 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Breakout Game/S03P02_declaring_the_objects.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Breakout 4 | 5 | 6 | 7 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Breakout Game/S03P03_drawing_ball_and_base.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Breakout 4 | 5 | 6 | 7 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /Breakout Game/S03P04_update_bar_position.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Breakout 4 | 5 | 6 | 7 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /Breakout Game/S03P05_user_input.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Breakout 4 | 5 | 6 | 7 | 94 | 95 | 96 | -------------------------------------------------------------------------------- /Breakout Game/S03P06_making_base_move.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Breakout 4 | 5 | 6 | 7 | 99 | 100 | 101 | -------------------------------------------------------------------------------- /Breakout Game/S03P07_update_ball_position.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Breakout 4 | 5 | 6 | 7 | 113 | 114 | 115 | -------------------------------------------------------------------------------- /Breakout Game/S03P08_base_ball_collision.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Breakout 4 | 5 | 6 | 7 | 125 | 126 | 127 | -------------------------------------------------------------------------------- /Breakout Game/S03P09_enemy_tiles.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Breakout 4 | 5 | 6 | 7 | 144 | 145 | 146 | -------------------------------------------------------------------------------- /Breakout Game/S03P10_draw_enemies.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Breakout 4 | 5 | 6 | 7 | 153 | 154 | 155 | -------------------------------------------------------------------------------- /Breakout Game/S03P11_ball_enemy_collision.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Breakout 4 | 5 | 6 | 7 | 167 | 168 | 169 | -------------------------------------------------------------------------------- /Breakout Game/S03P12_score_life_system.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Breakout 4 | 5 | 6 | 7 | 176 | 177 | 178 | -------------------------------------------------------------------------------- /Breakout Game/S03P13_game_over_condition.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Breakout 4 | 5 | 6 | 7 | 184 | 185 | 186 | -------------------------------------------------------------------------------- /Breakout Game/S03P14_basic_game_ready.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Breakout 4 | 5 | 6 | 7 | 194 | 195 | 196 | -------------------------------------------------------------------------------- /Breakout Game/S03P15_increasing_difficulty.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Breakout 4 | 5 | 6 | 7 | 218 | 219 | 220 | -------------------------------------------------------------------------------- /Catch the cupcakes/S05P01_Setting_up the project.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Catch the cupcakes 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Catch the cupcakes/S05P02_loading_the_resources.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Catch the cupcakes 5 | 6 | 7 | 8 | 47 | 48 | -------------------------------------------------------------------------------- /Catch the cupcakes/S05P03_declaring_the_objects.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Catch the cupcakes 5 | 6 | 7 | 8 | 73 | 74 | -------------------------------------------------------------------------------- /Catch the cupcakes/S05P04_Initializing the game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Catch the cupcakes 5 | 6 | 7 | 8 | 102 | 103 | -------------------------------------------------------------------------------- /Catch the cupcakes/S05P05_drawing_the_tiles.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Catch the cupcakes 5 | 6 | 7 | 8 | 113 | 114 | -------------------------------------------------------------------------------- /Catch the cupcakes/S05P06_drawing_the_catcher.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Catch the cupcakes 5 | 6 | 7 | 8 | 120 | 121 | -------------------------------------------------------------------------------- /Catch the cupcakes/S05P07_adding_animation_to_catcher.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Catch the cupcakes 5 | 6 | 7 | 8 | 128 | 129 | -------------------------------------------------------------------------------- /Catch the cupcakes/S05P08_moving_the_catcher.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Catch the cupcakes 5 | 6 | 7 | 8 | 159 | 160 | -------------------------------------------------------------------------------- /Catch the cupcakes/S05P09_jumping_catcher.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Catch the cupcakes 5 | 6 | 7 | 8 | 181 | 182 | -------------------------------------------------------------------------------- /Catch the cupcakes/S05P10_jumping_animation.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Catch the cupcakes 5 | 6 | 7 | 8 | 184 | 185 | -------------------------------------------------------------------------------- /Catch the cupcakes/S05P11_adding_cupcakes.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Catch the cupcakes 5 | 6 | 7 | 8 | 190 | 191 | -------------------------------------------------------------------------------- /Catch the cupcakes/S05P12_drawing_the_food.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Catch the cupcakes 5 | 6 | 7 | 8 | 206 | 207 | -------------------------------------------------------------------------------- /Catch the cupcakes/S05P13_all_collision_functions.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Catch the cupcakes 5 | 6 | 7 | 8 | 227 | 228 | -------------------------------------------------------------------------------- /Catch the cupcakes/S05P14_food_collisions.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Catch the cupcakes 5 | 6 | 7 | 8 | 241 | 242 | -------------------------------------------------------------------------------- /Catch the cupcakes/S05P15_gravity.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Catch the cupcakes 5 | 6 | 7 | 8 | 257 | 258 | -------------------------------------------------------------------------------- /Catch the cupcakes/S05P16_increasing_level_and_score.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Catch the cupcakes 5 | 6 | 7 | 8 | 265 | 266 | -------------------------------------------------------------------------------- /Catch the cupcakes/S05P17_game_over_condition.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Catch the cupcakes 5 | 6 | 7 | 8 | 284 | 285 | -------------------------------------------------------------------------------- /Catch the cupcakes/debug.log: -------------------------------------------------------------------------------- 1 | [0408/092951.572:ERROR:file_io_win.cc(179)] CreateFile C:\Program Files (x86)\temp\settings.dat: Access is denied. (0x5) 2 | [0408/092951.591:ERROR:registration_protocol_win.cc(84)] TransactNamedPipe: The pipe has been ended. (0x6D) 3 | [0408/092951.594:ERROR:file_io_win.cc(179)] CreateFile C:\Program Files (x86)\temp\settings.dat: Access is denied. (0x5) 4 | [0408/093048.182:ERROR:file_io_win.cc(179)] CreateFile C:\Program Files (x86)\temp\settings.dat: Access is denied. (0x5) 5 | [0408/093048.191:ERROR:registration_protocol_win.cc(84)] TransactNamedPipe: The pipe has been ended. (0x6D) 6 | [0408/093048.193:ERROR:file_io_win.cc(179)] CreateFile C:\Program Files (x86)\temp\settings.dat: Access is denied. (0x5) 7 | [0408/093429.726:ERROR:file_io_win.cc(179)] CreateFile C:\Program Files (x86)\temp\settings.dat: Access is denied. (0x5) 8 | [0408/093429.731:ERROR:registration_protocol_win.cc(84)] TransactNamedPipe: The pipe has been ended. (0x6D) 9 | [0408/093429.733:ERROR:file_io_win.cc(179)] CreateFile C:\Program Files (x86)\temp\settings.dat: Access is denied. (0x5) 10 | -------------------------------------------------------------------------------- /Catch the cupcakes/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bijoyandas/Javascript_Game_Development_Course/08fdb1e5edb35fe725a32ae60c0e5bd79c98da44/Catch the cupcakes/images/background.jpg -------------------------------------------------------------------------------- /Catch the cupcakes/images/blood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bijoyandas/Javascript_Game_Development_Course/08fdb1e5edb35fe725a32ae60c0e5bd79c98da44/Catch the cupcakes/images/blood.png -------------------------------------------------------------------------------- /Catch the cupcakes/images/catcher1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bijoyandas/Javascript_Game_Development_Course/08fdb1e5edb35fe725a32ae60c0e5bd79c98da44/Catch the cupcakes/images/catcher1.png -------------------------------------------------------------------------------- /Catch the cupcakes/images/catcher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bijoyandas/Javascript_Game_Development_Course/08fdb1e5edb35fe725a32ae60c0e5bd79c98da44/Catch the cupcakes/images/catcher2.png -------------------------------------------------------------------------------- /Catch the cupcakes/images/catcher3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bijoyandas/Javascript_Game_Development_Course/08fdb1e5edb35fe725a32ae60c0e5bd79c98da44/Catch the cupcakes/images/catcher3.png -------------------------------------------------------------------------------- /Catch the cupcakes/images/catcher4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bijoyandas/Javascript_Game_Development_Course/08fdb1e5edb35fe725a32ae60c0e5bd79c98da44/Catch the cupcakes/images/catcher4.png -------------------------------------------------------------------------------- /Catch the cupcakes/images/food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bijoyandas/Javascript_Game_Development_Course/08fdb1e5edb35fe725a32ae60c0e5bd79c98da44/Catch the cupcakes/images/food.png -------------------------------------------------------------------------------- /Catch the cupcakes/images/fruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bijoyandas/Javascript_Game_Development_Course/08fdb1e5edb35fe725a32ae60c0e5bd79c98da44/Catch the cupcakes/images/fruit.png -------------------------------------------------------------------------------- /Catch the cupcakes/images/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bijoyandas/Javascript_Game_Development_Course/08fdb1e5edb35fe725a32ae60c0e5bd79c98da44/Catch the cupcakes/images/tile.png -------------------------------------------------------------------------------- /Catch the cupcakes/sound/drop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bijoyandas/Javascript_Game_Development_Course/08fdb1e5edb35fe725a32ae60c0e5bd79c98da44/Catch the cupcakes/sound/drop.mp3 -------------------------------------------------------------------------------- /Catch the cupcakes/sound/eat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bijoyandas/Javascript_Game_Development_Course/08fdb1e5edb35fe725a32ae60c0e5bd79c98da44/Catch the cupcakes/sound/eat.mp3 -------------------------------------------------------------------------------- /Introduction to Canvas & JavaScript/S01P01_canvas_intro.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Canvas Intro 4 | 5 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Introduction to Canvas & JavaScript/S01P02_drawing_more_elements.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Canvas Intro 4 | 5 | 6 | 7 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Introduction to Canvas & JavaScript/S01P03_canvas_state.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Canvas Intro 4 | 5 | 6 | 7 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /Introduction to Canvas & JavaScript/S01P04_javascript_objects.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Learning Javascript Objects 4 | 5 | 6 | 7 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Introduction to Canvas & JavaScript/S01P05_drawing_objects.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Learning Javascript Objects 4 | 5 | 6 | 7 | 8 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Introduction to Canvas & JavaScript/S01P06_functions.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Learning functions 4 | 5 | 6 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Introduction to Canvas & JavaScript/S01P07_set_interval.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Learning setInterval 4 | 5 | 6 | 7 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Introduction to Canvas & JavaScript/S01P08_event_handling.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Canvas Intro 4 | 5 | 6 | 7 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Bijoyan Das 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Javascript_Game_Development_Course 2 | This repository is for my students of Udemy. You can find all lecture codes along with mentioned files for reading in here. So, feel free to clone it and if you have any problem just raise a question. 3 | 4 | For cloning you must have "Git" installed in your system. 5 | 6 | To clone just type the following: 7 | 8 | git clone https://github.com/bijoyandas/Javascript_Game_Development_Course.git 9 | 10 | If you find any mistakes or you can't figure out something, raise a question. I will get back to you asap. 11 | -------------------------------------------------------------------------------- /Snake Game/S02P01_Setting_up_project.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Snake 4 | 5 | 6 | 7 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Snake Game/S02P02_declaring_objects.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Snake 4 | 5 | 6 | 7 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Snake Game/S02P03_initializing_snake_and_food.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Snake 4 | 5 | 6 | 7 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /Snake Game/S02P04_drawing_snake.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Snake 4 | 5 | 6 | 7 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /Snake Game/S02P05_user_input.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Snake 4 | 5 | 6 | 7 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /Snake Game/S02P06_updating_snake_position.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Snake 4 | 5 | 6 | 7 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /Snake Game/S02P07_making_snake_move.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Snake 4 | 5 | 6 | 7 | 122 | 123 | 124 | -------------------------------------------------------------------------------- /Snake Game/S02P08_boundary_conditions.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Snake 4 | 5 | 6 | 7 | 138 | 139 | 140 | -------------------------------------------------------------------------------- /Snake Game/S02P09_drawing_food.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Snake 4 | 5 | 6 | 7 | 146 | 147 | 148 | -------------------------------------------------------------------------------- /Snake Game/S02P10_snake_food_collision-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Snake 4 | 5 | 6 | 7 | 170 | 171 | 172 | -------------------------------------------------------------------------------- /Snake Game/S02P11_snake_food_collision-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Snake 4 | 5 | 6 | 7 | 177 | 178 | 179 | -------------------------------------------------------------------------------- /Snake Game/S02P12_game_over-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Snake 4 | 5 | 6 | 7 | 189 | 190 | 191 | -------------------------------------------------------------------------------- /Snake Game/S02P13_game_over-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Snake 4 | 5 | 6 | 7 | 195 | 196 | 197 | -------------------------------------------------------------------------------- /Snake Game/S02P14_adding_score.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Snake 4 | 5 | 6 | 7 | 197 | 198 | 199 | -------------------------------------------------------------------------------- /Snake Game/S02P15_start_on_click.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Snake 4 | 5 | 6 | 7 | 204 | 205 | 206 | -------------------------------------------------------------------------------- /Snake Game/S02P16_finish_game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Snake 4 | 5 | 6 | 7 | 204 | 205 | 206 | -------------------------------------------------------------------------------- /Tricks/S04P01_mouse_movement.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Mouse Movement 4 | 5 | 6 | 7 | 88 | 89 | 90 | -------------------------------------------------------------------------------- /Tricks/S04P02_shooter_games_part_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Shooter Games 4 | 5 | 6 | 7 | 8 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /Tricks/S04P03_shooter_games_part_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Shooter Games 4 | 5 | 6 | 7 | 8 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /Tricks/S04P04_pause_screen.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Shooter Games 4 | 5 | 6 | 7 | 8 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /Tricks/S04P05_adding_sound.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Shooter Games 4 | 5 | 6 | 7 | 8 | 85 | 86 | 87 | -------------------------------------------------------------------------------- /Tricks/fire.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bijoyandas/Javascript_Game_Development_Course/08fdb1e5edb35fe725a32ae60c0e5bd79c98da44/Tricks/fire.mp3 --------------------------------------------------------------------------------