├── .gitignore ├── .idea ├── .gitignore ├── encodings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── CHANGELOG.md ├── COPYING ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── assets ├── Backgrounds │ ├── black.png │ ├── blue.png │ ├── darkPurple.png │ └── purple.png ├── Bonus │ ├── kenvector_future.ttf │ ├── kenvector_future_thin.ttf │ ├── sfx_laser1.ogg │ ├── sfx_laser2.ogg │ ├── sfx_lose.ogg │ ├── sfx_shieldDown.ogg │ ├── sfx_shieldUp.ogg │ ├── sfx_twoTone.ogg │ └── sfx_zap.ogg ├── PNG │ ├── Damage │ │ ├── playerShip1_damage1.png │ │ ├── playerShip1_damage2.png │ │ ├── playerShip1_damage3.png │ │ ├── playerShip2_damage1.png │ │ ├── playerShip2_damage2.png │ │ ├── playerShip2_damage3.png │ │ ├── playerShip3_damage1.png │ │ ├── playerShip3_damage2.png │ │ └── playerShip3_damage3.png │ ├── Effects │ │ ├── fire00.png │ │ ├── fire01.png │ │ ├── fire02.png │ │ ├── fire03.png │ │ ├── fire04.png │ │ ├── fire05.png │ │ ├── fire06.png │ │ ├── fire07.png │ │ ├── fire08.png │ │ ├── fire09.png │ │ ├── fire10.png │ │ ├── fire11.png │ │ ├── fire12.png │ │ ├── fire13.png │ │ ├── fire14.png │ │ ├── fire15.png │ │ ├── fire16.png │ │ ├── fire17.png │ │ ├── fire18.png │ │ ├── fire19.png │ │ ├── shield1.png │ │ ├── shield2.png │ │ ├── shield3.png │ │ ├── speed.png │ │ ├── star1.png │ │ ├── star2.png │ │ └── star3.png │ ├── Enemies │ │ ├── enemyBlack1.png │ │ ├── enemyBlack2.png │ │ ├── enemyBlack3.png │ │ ├── enemyBlack4.png │ │ ├── enemyBlack5.png │ │ ├── enemyBlue1.png │ │ ├── enemyBlue2.png │ │ ├── enemyBlue3.png │ │ ├── enemyBlue4.png │ │ ├── enemyBlue5.png │ │ ├── enemyGreen1.png │ │ ├── enemyGreen2.png │ │ ├── enemyGreen3.png │ │ ├── enemyGreen4.png │ │ ├── enemyGreen5.png │ │ ├── enemyRed1.png │ │ ├── enemyRed2.png │ │ ├── enemyRed3.png │ │ ├── enemyRed4.png │ │ └── enemyRed5.png │ ├── Lasers │ │ ├── laserBlue01.png │ │ ├── laserBlue02.png │ │ ├── laserBlue03.png │ │ ├── laserBlue04.png │ │ ├── laserBlue05.png │ │ ├── laserBlue06.png │ │ ├── laserBlue07.png │ │ ├── laserBlue08.png │ │ ├── laserBlue09.png │ │ ├── laserBlue10.png │ │ ├── laserBlue11.png │ │ ├── laserBlue12.png │ │ ├── laserBlue13.png │ │ ├── laserBlue14.png │ │ ├── laserBlue15.png │ │ ├── laserBlue16.png │ │ ├── laserGreen01.png │ │ ├── laserGreen02.png │ │ ├── laserGreen03.png │ │ ├── laserGreen04.png │ │ ├── laserGreen05.png │ │ ├── laserGreen06.png │ │ ├── laserGreen07.png │ │ ├── laserGreen08.png │ │ ├── laserGreen09.png │ │ ├── laserGreen10.png │ │ ├── laserGreen11.png │ │ ├── laserGreen12.png │ │ ├── laserGreen13.png │ │ ├── laserGreen14.png │ │ ├── laserGreen15.png │ │ ├── laserGreen16.png │ │ ├── laserRed01.png │ │ ├── laserRed02.png │ │ ├── laserRed03.png │ │ ├── laserRed04.png │ │ ├── laserRed05.png │ │ ├── laserRed06.png │ │ ├── laserRed07.png │ │ ├── laserRed08.png │ │ ├── laserRed09.png │ │ ├── laserRed10.png │ │ ├── laserRed11.png │ │ ├── laserRed12.png │ │ ├── laserRed13.png │ │ ├── laserRed14.png │ │ ├── laserRed15.png │ │ └── laserRed16.png │ ├── Meteors │ │ ├── meteorBrown_big1.png │ │ ├── meteorBrown_big2.png │ │ ├── meteorBrown_big3.png │ │ ├── meteorBrown_big4.png │ │ ├── meteorBrown_med1.png │ │ ├── meteorBrown_med3.png │ │ ├── meteorBrown_small1.png │ │ ├── meteorBrown_small2.png │ │ ├── meteorBrown_tiny1.png │ │ ├── meteorBrown_tiny2.png │ │ ├── meteorGrey_big1.png │ │ ├── meteorGrey_big2.png │ │ ├── meteorGrey_big3.png │ │ ├── meteorGrey_big4.png │ │ ├── meteorGrey_med1.png │ │ ├── meteorGrey_med2.png │ │ ├── meteorGrey_small1.png │ │ ├── meteorGrey_small2.png │ │ ├── meteorGrey_tiny1.png │ │ └── meteorGrey_tiny2.png │ ├── Parts │ │ ├── beam0.png │ │ ├── beam1.png │ │ ├── beam2.png │ │ ├── beam3.png │ │ ├── beam4.png │ │ ├── beam5.png │ │ ├── beam6.png │ │ ├── beamLong1.png │ │ ├── beamLong2.png │ │ ├── cockpitBlue_0.png │ │ ├── cockpitBlue_1.png │ │ ├── cockpitBlue_2.png │ │ ├── cockpitBlue_3.png │ │ ├── cockpitBlue_4.png │ │ ├── cockpitBlue_5.png │ │ ├── cockpitBlue_6.png │ │ ├── cockpitBlue_7.png │ │ ├── cockpitGreen_0.png │ │ ├── cockpitGreen_1.png │ │ ├── cockpitGreen_2.png │ │ ├── cockpitGreen_3.png │ │ ├── cockpitGreen_4.png │ │ ├── cockpitGreen_5.png │ │ ├── cockpitGreen_6.png │ │ ├── cockpitGreen_7.png │ │ ├── cockpitRed_0.png │ │ ├── cockpitRed_1.png │ │ ├── cockpitRed_2.png │ │ ├── cockpitRed_3.png │ │ ├── cockpitRed_4.png │ │ ├── cockpitRed_5.png │ │ ├── cockpitRed_6.png │ │ ├── cockpitRed_7.png │ │ ├── cockpitYellow_0.png │ │ ├── cockpitYellow_1.png │ │ ├── cockpitYellow_2.png │ │ ├── cockpitYellow_3.png │ │ ├── cockpitYellow_4.png │ │ ├── cockpitYellow_5.png │ │ ├── cockpitYellow_6.png │ │ ├── cockpitYellow_7.png │ │ ├── engine1.png │ │ ├── engine2.png │ │ ├── engine3.png │ │ ├── engine4.png │ │ ├── engine5.png │ │ ├── gun00.png │ │ ├── gun01.png │ │ ├── gun02.png │ │ ├── gun03.png │ │ ├── gun04.png │ │ ├── gun05.png │ │ ├── gun06.png │ │ ├── gun07.png │ │ ├── gun08.png │ │ ├── gun09.png │ │ ├── gun10.png │ │ ├── scratch1.png │ │ ├── scratch2.png │ │ ├── scratch3.png │ │ ├── turretBase_big.png │ │ ├── turretBase_small.png │ │ ├── wingBlue_0.png │ │ ├── wingBlue_1.png │ │ ├── wingBlue_2.png │ │ ├── wingBlue_3.png │ │ ├── wingBlue_4.png │ │ ├── wingBlue_5.png │ │ ├── wingBlue_6.png │ │ ├── wingBlue_7.png │ │ ├── wingGreen_0.png │ │ ├── wingGreen_1.png │ │ ├── wingGreen_2.png │ │ ├── wingGreen_3.png │ │ ├── wingGreen_4.png │ │ ├── wingGreen_5.png │ │ ├── wingGreen_6.png │ │ ├── wingGreen_7.png │ │ ├── wingRed_0.png │ │ ├── wingRed_1.png │ │ ├── wingRed_2.png │ │ ├── wingRed_3.png │ │ ├── wingRed_4.png │ │ ├── wingRed_5.png │ │ ├── wingRed_6.png │ │ ├── wingRed_7.png │ │ ├── wingYellow_0.png │ │ ├── wingYellow_1.png │ │ ├── wingYellow_2.png │ │ ├── wingYellow_3.png │ │ ├── wingYellow_4.png │ │ ├── wingYellow_5.png │ │ ├── wingYellow_6.png │ │ └── wingYellow_7.png │ ├── Power-ups │ │ ├── bold_silver.png │ │ ├── bolt_bronze.png │ │ ├── bolt_gold.png │ │ ├── pill_blue.png │ │ ├── pill_green.png │ │ ├── pill_red.png │ │ ├── pill_yellow.png │ │ ├── powerupBlue.png │ │ ├── powerupBlue_bolt.png │ │ ├── powerupBlue_shield.png │ │ ├── powerupBlue_star.png │ │ ├── powerupGreen.png │ │ ├── powerupGreen_bolt.png │ │ ├── powerupGreen_shield.png │ │ ├── powerupGreen_star.png │ │ ├── powerupRed.png │ │ ├── powerupRed_bolt.png │ │ ├── powerupRed_shield.png │ │ ├── powerupRed_star.png │ │ ├── powerupYellow.png │ │ ├── powerupYellow_bolt.png │ │ ├── powerupYellow_shield.png │ │ ├── powerupYellow_star.png │ │ ├── shield_bronze.png │ │ ├── shield_gold.png │ │ ├── shield_silver.png │ │ ├── star_bronze.png │ │ ├── star_gold.png │ │ ├── star_silver.png │ │ ├── things_bronze.png │ │ ├── things_gold.png │ │ └── things_silver.png │ ├── UI │ │ ├── buttonBlue.png │ │ ├── buttonGreen.png │ │ ├── buttonRed.png │ │ ├── buttonYellow.png │ │ ├── cursor.png │ │ ├── numeral0.png │ │ ├── numeral1.png │ │ ├── numeral2.png │ │ ├── numeral3.png │ │ ├── numeral4.png │ │ ├── numeral5.png │ │ ├── numeral6.png │ │ ├── numeral7.png │ │ ├── numeral8.png │ │ ├── numeral9.png │ │ ├── numeralX.png │ │ ├── playerLife1_blue.png │ │ ├── playerLife1_green.png │ │ ├── playerLife1_orange.png │ │ ├── playerLife1_red.png │ │ ├── playerLife2_blue.png │ │ ├── playerLife2_green.png │ │ ├── playerLife2_orange.png │ │ ├── playerLife2_red.png │ │ ├── playerLife3_blue.png │ │ ├── playerLife3_green.png │ │ ├── playerLife3_orange.png │ │ └── playerLife3_red.png │ ├── playerShip1_blue.png │ ├── playerShip1_green.png │ ├── playerShip1_orange.png │ ├── playerShip1_red.png │ ├── playerShip2_blue.png │ ├── playerShip2_green.png │ ├── playerShip2_orange.png │ ├── playerShip2_red.png │ ├── playerShip3_blue.png │ ├── playerShip3_green.png │ ├── playerShip3_orange.png │ ├── playerShip3_red.png │ ├── playerShip4_blue.png │ ├── playerShip4_purple.png │ ├── ufoBlue.png │ ├── ufoGreen.png │ ├── ufoRed.png │ └── ufoYellow.png ├── Spritesheet │ ├── sheet.png │ ├── sheet.ron │ └── sheet.xml ├── Vector │ ├── sheet.svg │ └── sheet.swf ├── license.txt ├── preview.png └── sample.png ├── resources ├── display_config.ron ├── game_config.ron └── input.ron ├── screenshot.png ├── space_shooter.iml └── src ├── bundle.rs ├── components ├── asteroid.rs ├── laser.rs ├── life.rs ├── mod.rs └── ship.rs ├── config.rs ├── entities ├── asteroid.rs ├── background.rs ├── camera.rs ├── laser.rs ├── lives.rs ├── mod.rs └── ship.rs ├── main.rs ├── resources ├── laser.rs ├── mod.rs └── play_state.rs ├── state.rs └── systems ├── asteroid.rs ├── laser.rs ├── laser_collision.rs ├── lives.rs ├── mod.rs ├── ship.rs └── ship_collision.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | DS_Store -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/COPYING -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/README.md -------------------------------------------------------------------------------- /assets/Backgrounds/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/Backgrounds/black.png -------------------------------------------------------------------------------- /assets/Backgrounds/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/Backgrounds/blue.png -------------------------------------------------------------------------------- /assets/Backgrounds/darkPurple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/Backgrounds/darkPurple.png -------------------------------------------------------------------------------- /assets/Backgrounds/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/Backgrounds/purple.png -------------------------------------------------------------------------------- /assets/Bonus/kenvector_future.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/Bonus/kenvector_future.ttf -------------------------------------------------------------------------------- /assets/Bonus/kenvector_future_thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/Bonus/kenvector_future_thin.ttf -------------------------------------------------------------------------------- /assets/Bonus/sfx_laser1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/Bonus/sfx_laser1.ogg -------------------------------------------------------------------------------- /assets/Bonus/sfx_laser2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/Bonus/sfx_laser2.ogg -------------------------------------------------------------------------------- /assets/Bonus/sfx_lose.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/Bonus/sfx_lose.ogg -------------------------------------------------------------------------------- /assets/Bonus/sfx_shieldDown.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/Bonus/sfx_shieldDown.ogg -------------------------------------------------------------------------------- /assets/Bonus/sfx_shieldUp.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/Bonus/sfx_shieldUp.ogg -------------------------------------------------------------------------------- /assets/Bonus/sfx_twoTone.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/Bonus/sfx_twoTone.ogg -------------------------------------------------------------------------------- /assets/Bonus/sfx_zap.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/Bonus/sfx_zap.ogg -------------------------------------------------------------------------------- /assets/PNG/Damage/playerShip1_damage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Damage/playerShip1_damage1.png -------------------------------------------------------------------------------- /assets/PNG/Damage/playerShip1_damage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Damage/playerShip1_damage2.png -------------------------------------------------------------------------------- /assets/PNG/Damage/playerShip1_damage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Damage/playerShip1_damage3.png -------------------------------------------------------------------------------- /assets/PNG/Damage/playerShip2_damage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Damage/playerShip2_damage1.png -------------------------------------------------------------------------------- /assets/PNG/Damage/playerShip2_damage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Damage/playerShip2_damage2.png -------------------------------------------------------------------------------- /assets/PNG/Damage/playerShip2_damage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Damage/playerShip2_damage3.png -------------------------------------------------------------------------------- /assets/PNG/Damage/playerShip3_damage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Damage/playerShip3_damage1.png -------------------------------------------------------------------------------- /assets/PNG/Damage/playerShip3_damage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Damage/playerShip3_damage2.png -------------------------------------------------------------------------------- /assets/PNG/Damage/playerShip3_damage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Damage/playerShip3_damage3.png -------------------------------------------------------------------------------- /assets/PNG/Effects/fire00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/fire00.png -------------------------------------------------------------------------------- /assets/PNG/Effects/fire01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/fire01.png -------------------------------------------------------------------------------- /assets/PNG/Effects/fire02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/fire02.png -------------------------------------------------------------------------------- /assets/PNG/Effects/fire03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/fire03.png -------------------------------------------------------------------------------- /assets/PNG/Effects/fire04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/fire04.png -------------------------------------------------------------------------------- /assets/PNG/Effects/fire05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/fire05.png -------------------------------------------------------------------------------- /assets/PNG/Effects/fire06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/fire06.png -------------------------------------------------------------------------------- /assets/PNG/Effects/fire07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/fire07.png -------------------------------------------------------------------------------- /assets/PNG/Effects/fire08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/fire08.png -------------------------------------------------------------------------------- /assets/PNG/Effects/fire09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/fire09.png -------------------------------------------------------------------------------- /assets/PNG/Effects/fire10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/fire10.png -------------------------------------------------------------------------------- /assets/PNG/Effects/fire11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/fire11.png -------------------------------------------------------------------------------- /assets/PNG/Effects/fire12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/fire12.png -------------------------------------------------------------------------------- /assets/PNG/Effects/fire13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/fire13.png -------------------------------------------------------------------------------- /assets/PNG/Effects/fire14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/fire14.png -------------------------------------------------------------------------------- /assets/PNG/Effects/fire15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/fire15.png -------------------------------------------------------------------------------- /assets/PNG/Effects/fire16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/fire16.png -------------------------------------------------------------------------------- /assets/PNG/Effects/fire17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/fire17.png -------------------------------------------------------------------------------- /assets/PNG/Effects/fire18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/fire18.png -------------------------------------------------------------------------------- /assets/PNG/Effects/fire19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/fire19.png -------------------------------------------------------------------------------- /assets/PNG/Effects/shield1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/shield1.png -------------------------------------------------------------------------------- /assets/PNG/Effects/shield2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/shield2.png -------------------------------------------------------------------------------- /assets/PNG/Effects/shield3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/shield3.png -------------------------------------------------------------------------------- /assets/PNG/Effects/speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/speed.png -------------------------------------------------------------------------------- /assets/PNG/Effects/star1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/star1.png -------------------------------------------------------------------------------- /assets/PNG/Effects/star2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/star2.png -------------------------------------------------------------------------------- /assets/PNG/Effects/star3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Effects/star3.png -------------------------------------------------------------------------------- /assets/PNG/Enemies/enemyBlack1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Enemies/enemyBlack1.png -------------------------------------------------------------------------------- /assets/PNG/Enemies/enemyBlack2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Enemies/enemyBlack2.png -------------------------------------------------------------------------------- /assets/PNG/Enemies/enemyBlack3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Enemies/enemyBlack3.png -------------------------------------------------------------------------------- /assets/PNG/Enemies/enemyBlack4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Enemies/enemyBlack4.png -------------------------------------------------------------------------------- /assets/PNG/Enemies/enemyBlack5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Enemies/enemyBlack5.png -------------------------------------------------------------------------------- /assets/PNG/Enemies/enemyBlue1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Enemies/enemyBlue1.png -------------------------------------------------------------------------------- /assets/PNG/Enemies/enemyBlue2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Enemies/enemyBlue2.png -------------------------------------------------------------------------------- /assets/PNG/Enemies/enemyBlue3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Enemies/enemyBlue3.png -------------------------------------------------------------------------------- /assets/PNG/Enemies/enemyBlue4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Enemies/enemyBlue4.png -------------------------------------------------------------------------------- /assets/PNG/Enemies/enemyBlue5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Enemies/enemyBlue5.png -------------------------------------------------------------------------------- /assets/PNG/Enemies/enemyGreen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Enemies/enemyGreen1.png -------------------------------------------------------------------------------- /assets/PNG/Enemies/enemyGreen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Enemies/enemyGreen2.png -------------------------------------------------------------------------------- /assets/PNG/Enemies/enemyGreen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Enemies/enemyGreen3.png -------------------------------------------------------------------------------- /assets/PNG/Enemies/enemyGreen4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Enemies/enemyGreen4.png -------------------------------------------------------------------------------- /assets/PNG/Enemies/enemyGreen5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Enemies/enemyGreen5.png -------------------------------------------------------------------------------- /assets/PNG/Enemies/enemyRed1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Enemies/enemyRed1.png -------------------------------------------------------------------------------- /assets/PNG/Enemies/enemyRed2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Enemies/enemyRed2.png -------------------------------------------------------------------------------- /assets/PNG/Enemies/enemyRed3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Enemies/enemyRed3.png -------------------------------------------------------------------------------- /assets/PNG/Enemies/enemyRed4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Enemies/enemyRed4.png -------------------------------------------------------------------------------- /assets/PNG/Enemies/enemyRed5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Enemies/enemyRed5.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserBlue01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserBlue01.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserBlue02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserBlue02.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserBlue03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserBlue03.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserBlue04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserBlue04.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserBlue05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserBlue05.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserBlue06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserBlue06.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserBlue07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserBlue07.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserBlue08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserBlue08.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserBlue09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserBlue09.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserBlue10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserBlue10.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserBlue11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserBlue11.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserBlue12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserBlue12.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserBlue13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserBlue13.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserBlue14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserBlue14.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserBlue15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserBlue15.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserBlue16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserBlue16.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserGreen01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserGreen01.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserGreen02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserGreen02.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserGreen03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserGreen03.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserGreen04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserGreen04.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserGreen05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserGreen05.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserGreen06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserGreen06.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserGreen07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserGreen07.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserGreen08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserGreen08.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserGreen09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserGreen09.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserGreen10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserGreen10.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserGreen11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserGreen11.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserGreen12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserGreen12.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserGreen13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserGreen13.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserGreen14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserGreen14.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserGreen15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserGreen15.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserGreen16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserGreen16.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserRed01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserRed01.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserRed02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserRed02.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserRed03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserRed03.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserRed04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserRed04.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserRed05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserRed05.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserRed06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserRed06.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserRed07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserRed07.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserRed08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserRed08.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserRed09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserRed09.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserRed10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserRed10.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserRed11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserRed11.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserRed12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserRed12.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserRed13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserRed13.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserRed14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserRed14.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserRed15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserRed15.png -------------------------------------------------------------------------------- /assets/PNG/Lasers/laserRed16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Lasers/laserRed16.png -------------------------------------------------------------------------------- /assets/PNG/Meteors/meteorBrown_big1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Meteors/meteorBrown_big1.png -------------------------------------------------------------------------------- /assets/PNG/Meteors/meteorBrown_big2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Meteors/meteorBrown_big2.png -------------------------------------------------------------------------------- /assets/PNG/Meteors/meteorBrown_big3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Meteors/meteorBrown_big3.png -------------------------------------------------------------------------------- /assets/PNG/Meteors/meteorBrown_big4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Meteors/meteorBrown_big4.png -------------------------------------------------------------------------------- /assets/PNG/Meteors/meteorBrown_med1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Meteors/meteorBrown_med1.png -------------------------------------------------------------------------------- /assets/PNG/Meteors/meteorBrown_med3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Meteors/meteorBrown_med3.png -------------------------------------------------------------------------------- /assets/PNG/Meteors/meteorBrown_small1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Meteors/meteorBrown_small1.png -------------------------------------------------------------------------------- /assets/PNG/Meteors/meteorBrown_small2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Meteors/meteorBrown_small2.png -------------------------------------------------------------------------------- /assets/PNG/Meteors/meteorBrown_tiny1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Meteors/meteorBrown_tiny1.png -------------------------------------------------------------------------------- /assets/PNG/Meteors/meteorBrown_tiny2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Meteors/meteorBrown_tiny2.png -------------------------------------------------------------------------------- /assets/PNG/Meteors/meteorGrey_big1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Meteors/meteorGrey_big1.png -------------------------------------------------------------------------------- /assets/PNG/Meteors/meteorGrey_big2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Meteors/meteorGrey_big2.png -------------------------------------------------------------------------------- /assets/PNG/Meteors/meteorGrey_big3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Meteors/meteorGrey_big3.png -------------------------------------------------------------------------------- /assets/PNG/Meteors/meteorGrey_big4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Meteors/meteorGrey_big4.png -------------------------------------------------------------------------------- /assets/PNG/Meteors/meteorGrey_med1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Meteors/meteorGrey_med1.png -------------------------------------------------------------------------------- /assets/PNG/Meteors/meteorGrey_med2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Meteors/meteorGrey_med2.png -------------------------------------------------------------------------------- /assets/PNG/Meteors/meteorGrey_small1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Meteors/meteorGrey_small1.png -------------------------------------------------------------------------------- /assets/PNG/Meteors/meteorGrey_small2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Meteors/meteorGrey_small2.png -------------------------------------------------------------------------------- /assets/PNG/Meteors/meteorGrey_tiny1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Meteors/meteorGrey_tiny1.png -------------------------------------------------------------------------------- /assets/PNG/Meteors/meteorGrey_tiny2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Meteors/meteorGrey_tiny2.png -------------------------------------------------------------------------------- /assets/PNG/Parts/beam0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/beam0.png -------------------------------------------------------------------------------- /assets/PNG/Parts/beam1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/beam1.png -------------------------------------------------------------------------------- /assets/PNG/Parts/beam2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/beam2.png -------------------------------------------------------------------------------- /assets/PNG/Parts/beam3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/beam3.png -------------------------------------------------------------------------------- /assets/PNG/Parts/beam4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/beam4.png -------------------------------------------------------------------------------- /assets/PNG/Parts/beam5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/beam5.png -------------------------------------------------------------------------------- /assets/PNG/Parts/beam6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/beam6.png -------------------------------------------------------------------------------- /assets/PNG/Parts/beamLong1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/beamLong1.png -------------------------------------------------------------------------------- /assets/PNG/Parts/beamLong2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/beamLong2.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitBlue_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitBlue_0.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitBlue_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitBlue_1.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitBlue_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitBlue_2.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitBlue_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitBlue_3.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitBlue_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitBlue_4.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitBlue_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitBlue_5.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitBlue_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitBlue_6.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitBlue_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitBlue_7.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitGreen_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitGreen_0.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitGreen_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitGreen_1.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitGreen_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitGreen_2.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitGreen_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitGreen_3.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitGreen_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitGreen_4.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitGreen_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitGreen_5.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitGreen_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitGreen_6.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitGreen_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitGreen_7.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitRed_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitRed_0.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitRed_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitRed_1.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitRed_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitRed_2.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitRed_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitRed_3.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitRed_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitRed_4.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitRed_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitRed_5.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitRed_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitRed_6.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitRed_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitRed_7.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitYellow_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitYellow_0.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitYellow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitYellow_1.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitYellow_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitYellow_2.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitYellow_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitYellow_3.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitYellow_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitYellow_4.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitYellow_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitYellow_5.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitYellow_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitYellow_6.png -------------------------------------------------------------------------------- /assets/PNG/Parts/cockpitYellow_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/cockpitYellow_7.png -------------------------------------------------------------------------------- /assets/PNG/Parts/engine1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/engine1.png -------------------------------------------------------------------------------- /assets/PNG/Parts/engine2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/engine2.png -------------------------------------------------------------------------------- /assets/PNG/Parts/engine3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/engine3.png -------------------------------------------------------------------------------- /assets/PNG/Parts/engine4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/engine4.png -------------------------------------------------------------------------------- /assets/PNG/Parts/engine5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/engine5.png -------------------------------------------------------------------------------- /assets/PNG/Parts/gun00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/gun00.png -------------------------------------------------------------------------------- /assets/PNG/Parts/gun01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/gun01.png -------------------------------------------------------------------------------- /assets/PNG/Parts/gun02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/gun02.png -------------------------------------------------------------------------------- /assets/PNG/Parts/gun03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/gun03.png -------------------------------------------------------------------------------- /assets/PNG/Parts/gun04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/gun04.png -------------------------------------------------------------------------------- /assets/PNG/Parts/gun05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/gun05.png -------------------------------------------------------------------------------- /assets/PNG/Parts/gun06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/gun06.png -------------------------------------------------------------------------------- /assets/PNG/Parts/gun07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/gun07.png -------------------------------------------------------------------------------- /assets/PNG/Parts/gun08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/gun08.png -------------------------------------------------------------------------------- /assets/PNG/Parts/gun09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/gun09.png -------------------------------------------------------------------------------- /assets/PNG/Parts/gun10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/gun10.png -------------------------------------------------------------------------------- /assets/PNG/Parts/scratch1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/scratch1.png -------------------------------------------------------------------------------- /assets/PNG/Parts/scratch2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/scratch2.png -------------------------------------------------------------------------------- /assets/PNG/Parts/scratch3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/scratch3.png -------------------------------------------------------------------------------- /assets/PNG/Parts/turretBase_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/turretBase_big.png -------------------------------------------------------------------------------- /assets/PNG/Parts/turretBase_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/turretBase_small.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingBlue_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingBlue_0.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingBlue_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingBlue_1.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingBlue_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingBlue_2.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingBlue_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingBlue_3.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingBlue_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingBlue_4.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingBlue_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingBlue_5.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingBlue_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingBlue_6.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingBlue_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingBlue_7.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingGreen_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingGreen_0.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingGreen_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingGreen_1.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingGreen_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingGreen_2.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingGreen_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingGreen_3.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingGreen_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingGreen_4.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingGreen_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingGreen_5.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingGreen_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingGreen_6.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingGreen_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingGreen_7.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingRed_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingRed_0.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingRed_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingRed_1.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingRed_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingRed_2.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingRed_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingRed_3.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingRed_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingRed_4.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingRed_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingRed_5.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingRed_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingRed_6.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingRed_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingRed_7.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingYellow_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingYellow_0.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingYellow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingYellow_1.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingYellow_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingYellow_2.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingYellow_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingYellow_3.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingYellow_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingYellow_4.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingYellow_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingYellow_5.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingYellow_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingYellow_6.png -------------------------------------------------------------------------------- /assets/PNG/Parts/wingYellow_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Parts/wingYellow_7.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/bold_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/bold_silver.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/bolt_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/bolt_bronze.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/bolt_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/bolt_gold.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/pill_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/pill_blue.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/pill_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/pill_green.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/pill_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/pill_red.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/pill_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/pill_yellow.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/powerupBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/powerupBlue.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/powerupBlue_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/powerupBlue_bolt.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/powerupBlue_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/powerupBlue_shield.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/powerupBlue_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/powerupBlue_star.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/powerupGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/powerupGreen.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/powerupGreen_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/powerupGreen_bolt.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/powerupGreen_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/powerupGreen_shield.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/powerupGreen_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/powerupGreen_star.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/powerupRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/powerupRed.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/powerupRed_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/powerupRed_bolt.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/powerupRed_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/powerupRed_shield.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/powerupRed_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/powerupRed_star.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/powerupYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/powerupYellow.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/powerupYellow_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/powerupYellow_bolt.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/powerupYellow_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/powerupYellow_shield.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/powerupYellow_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/powerupYellow_star.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/shield_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/shield_bronze.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/shield_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/shield_gold.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/shield_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/shield_silver.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/star_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/star_bronze.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/star_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/star_gold.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/star_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/star_silver.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/things_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/things_bronze.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/things_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/things_gold.png -------------------------------------------------------------------------------- /assets/PNG/Power-ups/things_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/Power-ups/things_silver.png -------------------------------------------------------------------------------- /assets/PNG/UI/buttonBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/buttonBlue.png -------------------------------------------------------------------------------- /assets/PNG/UI/buttonGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/buttonGreen.png -------------------------------------------------------------------------------- /assets/PNG/UI/buttonRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/buttonRed.png -------------------------------------------------------------------------------- /assets/PNG/UI/buttonYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/buttonYellow.png -------------------------------------------------------------------------------- /assets/PNG/UI/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/cursor.png -------------------------------------------------------------------------------- /assets/PNG/UI/numeral0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/numeral0.png -------------------------------------------------------------------------------- /assets/PNG/UI/numeral1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/numeral1.png -------------------------------------------------------------------------------- /assets/PNG/UI/numeral2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/numeral2.png -------------------------------------------------------------------------------- /assets/PNG/UI/numeral3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/numeral3.png -------------------------------------------------------------------------------- /assets/PNG/UI/numeral4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/numeral4.png -------------------------------------------------------------------------------- /assets/PNG/UI/numeral5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/numeral5.png -------------------------------------------------------------------------------- /assets/PNG/UI/numeral6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/numeral6.png -------------------------------------------------------------------------------- /assets/PNG/UI/numeral7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/numeral7.png -------------------------------------------------------------------------------- /assets/PNG/UI/numeral8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/numeral8.png -------------------------------------------------------------------------------- /assets/PNG/UI/numeral9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/numeral9.png -------------------------------------------------------------------------------- /assets/PNG/UI/numeralX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/numeralX.png -------------------------------------------------------------------------------- /assets/PNG/UI/playerLife1_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/playerLife1_blue.png -------------------------------------------------------------------------------- /assets/PNG/UI/playerLife1_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/playerLife1_green.png -------------------------------------------------------------------------------- /assets/PNG/UI/playerLife1_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/playerLife1_orange.png -------------------------------------------------------------------------------- /assets/PNG/UI/playerLife1_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/playerLife1_red.png -------------------------------------------------------------------------------- /assets/PNG/UI/playerLife2_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/playerLife2_blue.png -------------------------------------------------------------------------------- /assets/PNG/UI/playerLife2_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/playerLife2_green.png -------------------------------------------------------------------------------- /assets/PNG/UI/playerLife2_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/playerLife2_orange.png -------------------------------------------------------------------------------- /assets/PNG/UI/playerLife2_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/playerLife2_red.png -------------------------------------------------------------------------------- /assets/PNG/UI/playerLife3_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/playerLife3_blue.png -------------------------------------------------------------------------------- /assets/PNG/UI/playerLife3_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/playerLife3_green.png -------------------------------------------------------------------------------- /assets/PNG/UI/playerLife3_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/playerLife3_orange.png -------------------------------------------------------------------------------- /assets/PNG/UI/playerLife3_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/UI/playerLife3_red.png -------------------------------------------------------------------------------- /assets/PNG/playerShip1_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/playerShip1_blue.png -------------------------------------------------------------------------------- /assets/PNG/playerShip1_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/playerShip1_green.png -------------------------------------------------------------------------------- /assets/PNG/playerShip1_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/playerShip1_orange.png -------------------------------------------------------------------------------- /assets/PNG/playerShip1_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/playerShip1_red.png -------------------------------------------------------------------------------- /assets/PNG/playerShip2_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/playerShip2_blue.png -------------------------------------------------------------------------------- /assets/PNG/playerShip2_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/playerShip2_green.png -------------------------------------------------------------------------------- /assets/PNG/playerShip2_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/playerShip2_orange.png -------------------------------------------------------------------------------- /assets/PNG/playerShip2_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/playerShip2_red.png -------------------------------------------------------------------------------- /assets/PNG/playerShip3_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/playerShip3_blue.png -------------------------------------------------------------------------------- /assets/PNG/playerShip3_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/playerShip3_green.png -------------------------------------------------------------------------------- /assets/PNG/playerShip3_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/playerShip3_orange.png -------------------------------------------------------------------------------- /assets/PNG/playerShip3_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/playerShip3_red.png -------------------------------------------------------------------------------- /assets/PNG/playerShip4_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/playerShip4_blue.png -------------------------------------------------------------------------------- /assets/PNG/playerShip4_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/playerShip4_purple.png -------------------------------------------------------------------------------- /assets/PNG/ufoBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/ufoBlue.png -------------------------------------------------------------------------------- /assets/PNG/ufoGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/ufoGreen.png -------------------------------------------------------------------------------- /assets/PNG/ufoRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/ufoRed.png -------------------------------------------------------------------------------- /assets/PNG/ufoYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/PNG/ufoYellow.png -------------------------------------------------------------------------------- /assets/Spritesheet/sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/Spritesheet/sheet.png -------------------------------------------------------------------------------- /assets/Spritesheet/sheet.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/Spritesheet/sheet.ron -------------------------------------------------------------------------------- /assets/Spritesheet/sheet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/Spritesheet/sheet.xml -------------------------------------------------------------------------------- /assets/Vector/sheet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/Vector/sheet.svg -------------------------------------------------------------------------------- /assets/Vector/sheet.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/Vector/sheet.swf -------------------------------------------------------------------------------- /assets/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/license.txt -------------------------------------------------------------------------------- /assets/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/preview.png -------------------------------------------------------------------------------- /assets/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/assets/sample.png -------------------------------------------------------------------------------- /resources/display_config.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/resources/display_config.ron -------------------------------------------------------------------------------- /resources/game_config.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/resources/game_config.ron -------------------------------------------------------------------------------- /resources/input.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/resources/input.ron -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/screenshot.png -------------------------------------------------------------------------------- /space_shooter.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/space_shooter.iml -------------------------------------------------------------------------------- /src/bundle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/bundle.rs -------------------------------------------------------------------------------- /src/components/asteroid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/components/asteroid.rs -------------------------------------------------------------------------------- /src/components/laser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/components/laser.rs -------------------------------------------------------------------------------- /src/components/life.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/components/life.rs -------------------------------------------------------------------------------- /src/components/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/components/mod.rs -------------------------------------------------------------------------------- /src/components/ship.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/components/ship.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/entities/asteroid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/entities/asteroid.rs -------------------------------------------------------------------------------- /src/entities/background.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/entities/background.rs -------------------------------------------------------------------------------- /src/entities/camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/entities/camera.rs -------------------------------------------------------------------------------- /src/entities/laser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/entities/laser.rs -------------------------------------------------------------------------------- /src/entities/lives.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/entities/lives.rs -------------------------------------------------------------------------------- /src/entities/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/entities/mod.rs -------------------------------------------------------------------------------- /src/entities/ship.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/entities/ship.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/resources/laser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/resources/laser.rs -------------------------------------------------------------------------------- /src/resources/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/resources/mod.rs -------------------------------------------------------------------------------- /src/resources/play_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/resources/play_state.rs -------------------------------------------------------------------------------- /src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/state.rs -------------------------------------------------------------------------------- /src/systems/asteroid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/systems/asteroid.rs -------------------------------------------------------------------------------- /src/systems/laser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/systems/laser.rs -------------------------------------------------------------------------------- /src/systems/laser_collision.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/systems/laser_collision.rs -------------------------------------------------------------------------------- /src/systems/lives.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/systems/lives.rs -------------------------------------------------------------------------------- /src/systems/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/systems/mod.rs -------------------------------------------------------------------------------- /src/systems/ship.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/systems/ship.rs -------------------------------------------------------------------------------- /src/systems/ship_collision.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsoluti/space_shooter/HEAD/src/systems/ship_collision.rs --------------------------------------------------------------------------------