├── .gitattributes ├── Flotilla.SDL2.sln ├── LICENSE.md ├── README.md ├── SpaceProcessors ├── AlphaTextureContentProcessor.cs ├── Height2NormalProcessor.cs ├── Properties │ └── AssemblyInfo.cs ├── ShipMaterialProcessor.cs ├── ShipModelProcessor.cs └── SpaceProcessors.csproj ├── SpaceShooter ├── 64x64.jpg ├── Background │ ├── Atmosphere.cs │ ├── MotionField.cs │ ├── Planet.cs │ ├── SkyBox.cs │ └── Sun.cs ├── BloomEffect │ └── Bloom.cs ├── Camera │ ├── Camera.cs │ ├── ChaseCamera.cs │ └── LockCamera.cs ├── Content │ ├── Bloom │ │ ├── BloomBlur.fx │ │ ├── BloomCombine.fx │ │ └── BloomExtract.fx │ ├── Content.contentproj │ ├── Particles │ │ └── ParticleEffect.fx │ ├── Shaders │ │ ├── AtmosphereEffect.fx │ │ ├── MotionEffect.fx │ │ ├── PlanetEffect.fx │ │ ├── PointEffect.fx │ │ ├── PostprocessEffect.Fx │ │ ├── ShipEffect.fx │ │ ├── SimpleScreen.fx │ │ ├── SkyEffect.fx │ │ └── SunEffect.fx │ └── serp6.xap ├── Events │ ├── EventManager.cs │ ├── EventPopup.cs │ ├── ItemPopup.cs │ ├── ShipPopup.cs │ ├── Unlockables │ │ ├── evAbandonZombie.cs │ │ ├── evAssassinRevenge.cs │ │ ├── evAuroraResearchBad.cs │ │ ├── evAuroraResearchGood.cs │ │ ├── evBitterMelon.cs │ │ ├── evBitterMelonConcert.cs │ │ ├── evBruja.cs │ │ ├── evCasinoJob.cs │ │ ├── evCasinoRhino.cs │ │ ├── evCatCharity.cs │ │ ├── evCatGunReward.cs │ │ ├── evCatGuns.cs │ │ ├── evCatPrototype.cs │ │ ├── evDeerBruja.cs │ │ ├── evDeerHitchhikers.cs │ │ ├── evDeerKatana.cs │ │ ├── evDogBoots.cs │ │ ├── evDogs.cs │ │ ├── evHippoBuddy.cs │ │ ├── evHippoPirateBuddy.cs │ │ ├── evHitchhikerDrop.cs │ │ ├── evHitchhikerGift.cs │ │ ├── evImplementors.cs │ │ ├── evJaguarBuddy.cs │ │ ├── evKaraokeRevenge.cs │ │ ├── evKoala.cs │ │ ├── evOwlTattoo.cs │ │ ├── evPandaFight.cs │ │ ├── evPandaSlaveBuddy.cs │ │ ├── evPenguinHitman.cs │ │ ├── evPigReward.cs │ │ ├── evPirateHostage.cs │ │ ├── evSlaverRevenge.cs │ │ ├── evSpiderTwain.cs │ │ ├── evSwanPolice.cs │ │ ├── evToucanRevenge.cs │ │ ├── evToucanTreasure.cs │ │ ├── evWine.cs │ │ ├── evYetiResentment.cs │ │ ├── evYetiRevenge.cs │ │ └── evYetiStarve.cs │ ├── evAbandoned.cs │ ├── evAfrodita.cs │ ├── evAssassin.cs │ ├── evAurora.cs │ ├── evBabyYetis.cs │ ├── evBandits.cs │ ├── evCasino.cs │ ├── evCatBounty.cs │ ├── evCrocodile.cs │ ├── evDebug.cs │ ├── evDeer.cs │ ├── evDeerRevenge.cs │ ├── evDemoEnd.cs │ ├── evHitchhikerRevenge.cs │ ├── evHitchhikers.cs │ ├── evImplementorsMurder.cs │ ├── evKaraoke.cs │ ├── evKatanaShip.cs │ ├── evMurder.cs │ ├── evOwl.cs │ ├── evOwlBribe.cs │ ├── evPenguinReunion.cs │ ├── evPenguins.cs │ ├── evPigs.cs │ ├── evPirates.cs │ ├── evPrisoner.cs │ ├── evProfessors.cs │ ├── evRuins.cs │ ├── evSlaveFight.cs │ ├── evSlavers.cs │ ├── evSpaceHulk.cs │ ├── evStorm.cs │ ├── evStowaway.cs │ ├── evTerminalDeath.cs │ ├── evTutorial.cs │ └── evUnicorn.cs ├── Flotilla.SDL2.csproj ├── Flotilla.SDL2.csproj.user ├── Flotilla.csproj ├── Flotilla.csproj.Release.cachefile ├── Flotilla.csproj.user ├── FlotillaDemo.csproj ├── FlotillaDemo.csproj.user ├── FlotillaXbox.csproj ├── FlotillaXbox.csproj.Release.cachefile ├── FrameworkCore.cs ├── Game.ico ├── GameThumbnail.png ├── Helpers.cs ├── Inventory │ ├── AteneaGauntlet.cs │ ├── BeamShield.cs │ ├── BlesoRailChamber.cs │ ├── Boots.cs │ ├── Eyeball.cs │ ├── Gauntlet.cs │ ├── Heart.cs │ ├── InventoryItem.cs │ ├── JamalAutoDoc.cs │ ├── KeshiaEngine.cs │ ├── Totem.cs │ ├── itMuyoShield.cs │ ├── itRashadFireCon.cs │ └── itRoachShield.cs ├── MeshRenderer.cs ├── Particles │ ├── ParticleEmitter.cs │ ├── ParticleManager.cs │ ├── ParticleSettings.cs │ ├── ParticleSystem.cs │ ├── ParticleSystems │ │ ├── DeflectTrailSmoke.cs │ │ ├── DeflectTrailSparks.cs │ │ ├── HulkTrailDebris.cs │ │ ├── HulkTrailFire.cs │ │ ├── HulkTrailSmoke.cs │ │ ├── MissileDeflectFire.cs │ │ ├── MissileDeflectSparks.cs │ │ ├── MissileHitDebris.cs │ │ ├── MissileHitFire.cs │ │ ├── MissileHitSmoke.cs │ │ ├── MissileHitSparks.cs │ │ ├── MissileRingSmoke.cs │ │ ├── MissileTrailSmoke.cs │ │ ├── MissileTrailSparks.cs │ │ ├── MuzzleFire.cs │ │ ├── MuzzleSmoke.cs │ │ ├── NovaFire.cs │ │ ├── NovaGlow.cs │ │ ├── NovaSmoke.cs │ │ ├── NovaSparks.cs │ │ ├── PlanetExplosionFire.cs │ │ ├── PlanetExplosionSmoke.cs │ │ ├── RockExplosionFire.cs │ │ ├── RockExplosionSmoke.cs │ │ ├── RockExpolsionSparks.cs │ │ ├── RockTrailSmoke.cs │ │ ├── RockTrailSparks.cs │ │ ├── SmiteSmoke.cs │ │ ├── TorpedoTrailFire.cs │ │ └── TorpedoTrailSmoke.cs │ └── ParticleVertex.cs ├── Properties │ └── AssemblyInfo.cs ├── Resource.Designer.cs ├── Resource.resx ├── Simulation │ ├── BeamGun.cs │ ├── BeamWeapon.cs │ ├── Bolt.cs │ ├── Collideable.cs │ ├── Commander.cs │ ├── Debris.cs │ ├── Factions.cs │ ├── GameEffect.cs │ ├── Hulk.cs │ ├── PlayerCommander.cs │ ├── PlayerShip.cs │ ├── Projectiles.cs │ ├── SpaceShip.cs │ ├── Turret.cs │ ├── Weapon.cs │ ├── WeaponMachinegun.cs │ ├── WeaponSwarmRocket.cs │ ├── WeaponTorpedo.cs │ └── shipData.cs ├── SpaceShooterGame.cs ├── SpaceShooterXbox.csproj ├── SphereGen │ ├── SphereBox.cs │ └── SphereMesh.cs ├── System │ ├── AudioManager.cs │ ├── Clouds.cs │ ├── InputManager.cs │ ├── Level.cs │ ├── MessageQueue.cs │ ├── Options.cs │ ├── Pool.cs │ ├── StorageManager.cs │ └── WorldMap.cs ├── UI │ ├── AudioMenu.cs │ ├── BasePopup.cs │ ├── BugReport.cs │ ├── CampaignMenu.cs │ ├── CarnageReport.cs │ ├── CommandMenu.cs │ ├── ControlsMenu.cs │ ├── CreditsMenu.cs │ ├── DebugEventsMenu.cs │ ├── DiscRenderer.cs │ ├── FleetMenu.cs │ ├── GameOverMenu.cs │ ├── GamePopup.cs │ ├── Help │ │ ├── HelpArmor.cs │ │ ├── HelpControlsPC.cs │ │ ├── HelpControlsXBOX.cs │ │ ├── HelpLobby.cs │ │ ├── HelpOrders.cs │ │ └── HelpTurns.cs │ ├── HighScoreMenu.cs │ ├── IngameScoreboard.cs │ ├── InventoryPopup.cs │ ├── JoystickMenu.cs │ ├── LineRenderer.cs │ ├── LogMenu.cs │ ├── LogoMenu.cs │ ├── MainMenu.cs │ ├── Menu.cs │ ├── NameMenu.cs │ ├── OptionsMenu.cs │ ├── PauseMenu.cs │ ├── Playback.cs │ ├── PlaybackMenu.cs │ ├── PointRenderer.cs │ ├── QuitConfirm.cs │ ├── SelfDestructConfirm.cs │ ├── SellScreen.cs │ ├── ShipMenu.cs │ ├── SkirmishMenu.cs │ ├── SkirmishPopup.cs │ ├── SphereRenderer.cs │ ├── SysMenu.cs │ ├── SysPopup.cs │ ├── TitleMenu.cs │ ├── TradeMenu.cs │ ├── VideoMenu.cs │ ├── WorldButton.cs │ └── WorldText.cs ├── WindowsContent │ ├── WindowsContent.contentproj │ ├── splash.bmp │ ├── trial.bmp │ └── win │ │ ├── Sound Bank.xsb │ │ ├── Wave Bank.xwb │ │ └── serp6.xgs ├── XboxContent │ ├── XboxContent.contentproj │ └── xbox │ │ ├── Sound Bank.xsb │ │ └── serp6.xgs ├── app.config ├── eResource.Designer.cs ├── eResource.resx ├── iResource.Designer.cs ├── iResource.resx └── renameLower.sh └── TrianglePickingPipeline ├── Properties └── AssemblyInfo.cs ├── TrianglePickingPipeline.csproj └── TrianglePickingProcessor.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/.gitattributes -------------------------------------------------------------------------------- /Flotilla.SDL2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/Flotilla.SDL2.sln -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/README.md -------------------------------------------------------------------------------- /SpaceProcessors/AlphaTextureContentProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceProcessors/AlphaTextureContentProcessor.cs -------------------------------------------------------------------------------- /SpaceProcessors/Height2NormalProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceProcessors/Height2NormalProcessor.cs -------------------------------------------------------------------------------- /SpaceProcessors/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceProcessors/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SpaceProcessors/ShipMaterialProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceProcessors/ShipMaterialProcessor.cs -------------------------------------------------------------------------------- /SpaceProcessors/ShipModelProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceProcessors/ShipModelProcessor.cs -------------------------------------------------------------------------------- /SpaceProcessors/SpaceProcessors.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceProcessors/SpaceProcessors.csproj -------------------------------------------------------------------------------- /SpaceShooter/64x64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/64x64.jpg -------------------------------------------------------------------------------- /SpaceShooter/Background/Atmosphere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Background/Atmosphere.cs -------------------------------------------------------------------------------- /SpaceShooter/Background/MotionField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Background/MotionField.cs -------------------------------------------------------------------------------- /SpaceShooter/Background/Planet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Background/Planet.cs -------------------------------------------------------------------------------- /SpaceShooter/Background/SkyBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Background/SkyBox.cs -------------------------------------------------------------------------------- /SpaceShooter/Background/Sun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Background/Sun.cs -------------------------------------------------------------------------------- /SpaceShooter/BloomEffect/Bloom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/BloomEffect/Bloom.cs -------------------------------------------------------------------------------- /SpaceShooter/Camera/Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Camera/Camera.cs -------------------------------------------------------------------------------- /SpaceShooter/Camera/ChaseCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Camera/ChaseCamera.cs -------------------------------------------------------------------------------- /SpaceShooter/Camera/LockCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Camera/LockCamera.cs -------------------------------------------------------------------------------- /SpaceShooter/Content/Bloom/BloomBlur.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Content/Bloom/BloomBlur.fx -------------------------------------------------------------------------------- /SpaceShooter/Content/Bloom/BloomCombine.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Content/Bloom/BloomCombine.fx -------------------------------------------------------------------------------- /SpaceShooter/Content/Bloom/BloomExtract.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Content/Bloom/BloomExtract.fx -------------------------------------------------------------------------------- /SpaceShooter/Content/Content.contentproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Content/Content.contentproj -------------------------------------------------------------------------------- /SpaceShooter/Content/Particles/ParticleEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Content/Particles/ParticleEffect.fx -------------------------------------------------------------------------------- /SpaceShooter/Content/Shaders/AtmosphereEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Content/Shaders/AtmosphereEffect.fx -------------------------------------------------------------------------------- /SpaceShooter/Content/Shaders/MotionEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Content/Shaders/MotionEffect.fx -------------------------------------------------------------------------------- /SpaceShooter/Content/Shaders/PlanetEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Content/Shaders/PlanetEffect.fx -------------------------------------------------------------------------------- /SpaceShooter/Content/Shaders/PointEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Content/Shaders/PointEffect.fx -------------------------------------------------------------------------------- /SpaceShooter/Content/Shaders/PostprocessEffect.Fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Content/Shaders/PostprocessEffect.Fx -------------------------------------------------------------------------------- /SpaceShooter/Content/Shaders/ShipEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Content/Shaders/ShipEffect.fx -------------------------------------------------------------------------------- /SpaceShooter/Content/Shaders/SimpleScreen.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Content/Shaders/SimpleScreen.fx -------------------------------------------------------------------------------- /SpaceShooter/Content/Shaders/SkyEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Content/Shaders/SkyEffect.fx -------------------------------------------------------------------------------- /SpaceShooter/Content/Shaders/SunEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Content/Shaders/SunEffect.fx -------------------------------------------------------------------------------- /SpaceShooter/Content/serp6.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Content/serp6.xap -------------------------------------------------------------------------------- /SpaceShooter/Events/EventManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/EventManager.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/EventPopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/EventPopup.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/ItemPopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/ItemPopup.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/ShipPopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/ShipPopup.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evAbandonZombie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evAbandonZombie.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evAssassinRevenge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evAssassinRevenge.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evAuroraResearchBad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evAuroraResearchBad.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evAuroraResearchGood.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evAuroraResearchGood.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evBitterMelon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evBitterMelon.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evBitterMelonConcert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evBitterMelonConcert.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evBruja.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evBruja.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evCasinoJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evCasinoJob.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evCasinoRhino.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evCasinoRhino.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evCatCharity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evCatCharity.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evCatGunReward.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evCatGunReward.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evCatGuns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evCatGuns.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evCatPrototype.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evCatPrototype.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evDeerBruja.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evDeerBruja.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evDeerHitchhikers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evDeerHitchhikers.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evDeerKatana.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evDeerKatana.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evDogBoots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evDogBoots.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evDogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evDogs.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evHippoBuddy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evHippoBuddy.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evHippoPirateBuddy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evHippoPirateBuddy.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evHitchhikerDrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evHitchhikerDrop.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evHitchhikerGift.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evHitchhikerGift.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evImplementors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evImplementors.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evJaguarBuddy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evJaguarBuddy.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evKaraokeRevenge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evKaraokeRevenge.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evKoala.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evKoala.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evOwlTattoo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evOwlTattoo.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evPandaFight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evPandaFight.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evPandaSlaveBuddy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evPandaSlaveBuddy.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evPenguinHitman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evPenguinHitman.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evPigReward.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evPigReward.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evPirateHostage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evPirateHostage.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evSlaverRevenge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evSlaverRevenge.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evSpiderTwain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evSpiderTwain.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evSwanPolice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evSwanPolice.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evToucanRevenge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evToucanRevenge.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evToucanTreasure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evToucanTreasure.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evWine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evWine.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evYetiResentment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evYetiResentment.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evYetiRevenge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evYetiRevenge.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/Unlockables/evYetiStarve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/Unlockables/evYetiStarve.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evAbandoned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evAbandoned.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evAfrodita.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evAfrodita.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evAssassin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evAssassin.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evAurora.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evAurora.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evBabyYetis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evBabyYetis.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evBandits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evBandits.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evCasino.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evCasino.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evCatBounty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evCatBounty.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evCrocodile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evCrocodile.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evDebug.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evDeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evDeer.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evDeerRevenge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evDeerRevenge.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evDemoEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evDemoEnd.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evHitchhikerRevenge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evHitchhikerRevenge.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evHitchhikers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evHitchhikers.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evImplementorsMurder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evImplementorsMurder.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evKaraoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evKaraoke.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evKatanaShip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evKatanaShip.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evMurder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evMurder.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evOwl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evOwl.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evOwlBribe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evOwlBribe.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evPenguinReunion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evPenguinReunion.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evPenguins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evPenguins.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evPigs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evPigs.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evPirates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evPirates.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evPrisoner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evPrisoner.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evProfessors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evProfessors.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evRuins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evRuins.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evSlaveFight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evSlaveFight.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evSlavers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evSlavers.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evSpaceHulk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evSpaceHulk.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evStorm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evStorm.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evStowaway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evStowaway.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evTerminalDeath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evTerminalDeath.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evTutorial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evTutorial.cs -------------------------------------------------------------------------------- /SpaceShooter/Events/evUnicorn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Events/evUnicorn.cs -------------------------------------------------------------------------------- /SpaceShooter/Flotilla.SDL2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Flotilla.SDL2.csproj -------------------------------------------------------------------------------- /SpaceShooter/Flotilla.SDL2.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Flotilla.SDL2.csproj.user -------------------------------------------------------------------------------- /SpaceShooter/Flotilla.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Flotilla.csproj -------------------------------------------------------------------------------- /SpaceShooter/Flotilla.csproj.Release.cachefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Flotilla.csproj.Release.cachefile -------------------------------------------------------------------------------- /SpaceShooter/Flotilla.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Flotilla.csproj.user -------------------------------------------------------------------------------- /SpaceShooter/FlotillaDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/FlotillaDemo.csproj -------------------------------------------------------------------------------- /SpaceShooter/FlotillaDemo.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/FlotillaDemo.csproj.user -------------------------------------------------------------------------------- /SpaceShooter/FlotillaXbox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/FlotillaXbox.csproj -------------------------------------------------------------------------------- /SpaceShooter/FlotillaXbox.csproj.Release.cachefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/FlotillaXbox.csproj.Release.cachefile -------------------------------------------------------------------------------- /SpaceShooter/FrameworkCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/FrameworkCore.cs -------------------------------------------------------------------------------- /SpaceShooter/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Game.ico -------------------------------------------------------------------------------- /SpaceShooter/GameThumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/GameThumbnail.png -------------------------------------------------------------------------------- /SpaceShooter/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Helpers.cs -------------------------------------------------------------------------------- /SpaceShooter/Inventory/AteneaGauntlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Inventory/AteneaGauntlet.cs -------------------------------------------------------------------------------- /SpaceShooter/Inventory/BeamShield.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Inventory/BeamShield.cs -------------------------------------------------------------------------------- /SpaceShooter/Inventory/BlesoRailChamber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Inventory/BlesoRailChamber.cs -------------------------------------------------------------------------------- /SpaceShooter/Inventory/Boots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Inventory/Boots.cs -------------------------------------------------------------------------------- /SpaceShooter/Inventory/Eyeball.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Inventory/Eyeball.cs -------------------------------------------------------------------------------- /SpaceShooter/Inventory/Gauntlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Inventory/Gauntlet.cs -------------------------------------------------------------------------------- /SpaceShooter/Inventory/Heart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Inventory/Heart.cs -------------------------------------------------------------------------------- /SpaceShooter/Inventory/InventoryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Inventory/InventoryItem.cs -------------------------------------------------------------------------------- /SpaceShooter/Inventory/JamalAutoDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Inventory/JamalAutoDoc.cs -------------------------------------------------------------------------------- /SpaceShooter/Inventory/KeshiaEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Inventory/KeshiaEngine.cs -------------------------------------------------------------------------------- /SpaceShooter/Inventory/Totem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Inventory/Totem.cs -------------------------------------------------------------------------------- /SpaceShooter/Inventory/itMuyoShield.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Inventory/itMuyoShield.cs -------------------------------------------------------------------------------- /SpaceShooter/Inventory/itRashadFireCon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Inventory/itRashadFireCon.cs -------------------------------------------------------------------------------- /SpaceShooter/Inventory/itRoachShield.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Inventory/itRoachShield.cs -------------------------------------------------------------------------------- /SpaceShooter/MeshRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/MeshRenderer.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleEmitter.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleManager.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSettings.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystem.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/DeflectTrailSmoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/DeflectTrailSmoke.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/DeflectTrailSparks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/DeflectTrailSparks.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/HulkTrailDebris.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/HulkTrailDebris.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/HulkTrailFire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/HulkTrailFire.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/HulkTrailSmoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/HulkTrailSmoke.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/MissileDeflectFire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/MissileDeflectFire.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/MissileDeflectSparks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/MissileDeflectSparks.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/MissileHitDebris.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/MissileHitDebris.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/MissileHitFire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/MissileHitFire.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/MissileHitSmoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/MissileHitSmoke.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/MissileHitSparks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/MissileHitSparks.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/MissileRingSmoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/MissileRingSmoke.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/MissileTrailSmoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/MissileTrailSmoke.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/MissileTrailSparks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/MissileTrailSparks.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/MuzzleFire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/MuzzleFire.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/MuzzleSmoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/MuzzleSmoke.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/NovaFire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/NovaFire.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/NovaGlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/NovaGlow.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/NovaSmoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/NovaSmoke.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/NovaSparks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/NovaSparks.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/PlanetExplosionFire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/PlanetExplosionFire.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/PlanetExplosionSmoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/PlanetExplosionSmoke.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/RockExplosionFire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/RockExplosionFire.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/RockExplosionSmoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/RockExplosionSmoke.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/RockExpolsionSparks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/RockExpolsionSparks.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/RockTrailSmoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/RockTrailSmoke.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/RockTrailSparks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/RockTrailSparks.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/SmiteSmoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/SmiteSmoke.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/TorpedoTrailFire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/TorpedoTrailFire.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleSystems/TorpedoTrailSmoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleSystems/TorpedoTrailSmoke.cs -------------------------------------------------------------------------------- /SpaceShooter/Particles/ParticleVertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Particles/ParticleVertex.cs -------------------------------------------------------------------------------- /SpaceShooter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SpaceShooter/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Resource.Designer.cs -------------------------------------------------------------------------------- /SpaceShooter/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Resource.resx -------------------------------------------------------------------------------- /SpaceShooter/Simulation/BeamGun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Simulation/BeamGun.cs -------------------------------------------------------------------------------- /SpaceShooter/Simulation/BeamWeapon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Simulation/BeamWeapon.cs -------------------------------------------------------------------------------- /SpaceShooter/Simulation/Bolt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Simulation/Bolt.cs -------------------------------------------------------------------------------- /SpaceShooter/Simulation/Collideable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Simulation/Collideable.cs -------------------------------------------------------------------------------- /SpaceShooter/Simulation/Commander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Simulation/Commander.cs -------------------------------------------------------------------------------- /SpaceShooter/Simulation/Debris.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Simulation/Debris.cs -------------------------------------------------------------------------------- /SpaceShooter/Simulation/Factions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Simulation/Factions.cs -------------------------------------------------------------------------------- /SpaceShooter/Simulation/GameEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Simulation/GameEffect.cs -------------------------------------------------------------------------------- /SpaceShooter/Simulation/Hulk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Simulation/Hulk.cs -------------------------------------------------------------------------------- /SpaceShooter/Simulation/PlayerCommander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Simulation/PlayerCommander.cs -------------------------------------------------------------------------------- /SpaceShooter/Simulation/PlayerShip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Simulation/PlayerShip.cs -------------------------------------------------------------------------------- /SpaceShooter/Simulation/Projectiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Simulation/Projectiles.cs -------------------------------------------------------------------------------- /SpaceShooter/Simulation/SpaceShip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Simulation/SpaceShip.cs -------------------------------------------------------------------------------- /SpaceShooter/Simulation/Turret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Simulation/Turret.cs -------------------------------------------------------------------------------- /SpaceShooter/Simulation/Weapon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Simulation/Weapon.cs -------------------------------------------------------------------------------- /SpaceShooter/Simulation/WeaponMachinegun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Simulation/WeaponMachinegun.cs -------------------------------------------------------------------------------- /SpaceShooter/Simulation/WeaponSwarmRocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Simulation/WeaponSwarmRocket.cs -------------------------------------------------------------------------------- /SpaceShooter/Simulation/WeaponTorpedo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Simulation/WeaponTorpedo.cs -------------------------------------------------------------------------------- /SpaceShooter/Simulation/shipData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/Simulation/shipData.cs -------------------------------------------------------------------------------- /SpaceShooter/SpaceShooterGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/SpaceShooterGame.cs -------------------------------------------------------------------------------- /SpaceShooter/SpaceShooterXbox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/SpaceShooterXbox.csproj -------------------------------------------------------------------------------- /SpaceShooter/SphereGen/SphereBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/SphereGen/SphereBox.cs -------------------------------------------------------------------------------- /SpaceShooter/SphereGen/SphereMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/SphereGen/SphereMesh.cs -------------------------------------------------------------------------------- /SpaceShooter/System/AudioManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/System/AudioManager.cs -------------------------------------------------------------------------------- /SpaceShooter/System/Clouds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/System/Clouds.cs -------------------------------------------------------------------------------- /SpaceShooter/System/InputManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/System/InputManager.cs -------------------------------------------------------------------------------- /SpaceShooter/System/Level.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/System/Level.cs -------------------------------------------------------------------------------- /SpaceShooter/System/MessageQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/System/MessageQueue.cs -------------------------------------------------------------------------------- /SpaceShooter/System/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/System/Options.cs -------------------------------------------------------------------------------- /SpaceShooter/System/Pool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/System/Pool.cs -------------------------------------------------------------------------------- /SpaceShooter/System/StorageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/System/StorageManager.cs -------------------------------------------------------------------------------- /SpaceShooter/System/WorldMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/System/WorldMap.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/AudioMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/AudioMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/BasePopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/BasePopup.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/BugReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/BugReport.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/CampaignMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/CampaignMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/CarnageReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/CarnageReport.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/CommandMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/CommandMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/ControlsMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/ControlsMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/CreditsMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/CreditsMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/DebugEventsMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/DebugEventsMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/DiscRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/DiscRenderer.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/FleetMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/FleetMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/GameOverMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/GameOverMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/GamePopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/GamePopup.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/Help/HelpArmor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/Help/HelpArmor.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/Help/HelpControlsPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/Help/HelpControlsPC.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/Help/HelpControlsXBOX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/Help/HelpControlsXBOX.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/Help/HelpLobby.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/Help/HelpLobby.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/Help/HelpOrders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/Help/HelpOrders.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/Help/HelpTurns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/Help/HelpTurns.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/HighScoreMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/HighScoreMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/IngameScoreboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/IngameScoreboard.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/InventoryPopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/InventoryPopup.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/JoystickMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/JoystickMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/LineRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/LineRenderer.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/LogMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/LogMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/LogoMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/LogoMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/MainMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/MainMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/Menu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/NameMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/NameMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/OptionsMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/OptionsMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/PauseMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/PauseMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/Playback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/Playback.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/PlaybackMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/PlaybackMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/PointRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/PointRenderer.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/QuitConfirm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/QuitConfirm.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/SelfDestructConfirm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/SelfDestructConfirm.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/SellScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/SellScreen.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/ShipMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/ShipMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/SkirmishMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/SkirmishMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/SkirmishPopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/SkirmishPopup.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/SphereRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/SphereRenderer.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/SysMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/SysMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/SysPopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/SysPopup.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/TitleMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/TitleMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/TradeMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/TradeMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/VideoMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/VideoMenu.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/WorldButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/WorldButton.cs -------------------------------------------------------------------------------- /SpaceShooter/UI/WorldText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/UI/WorldText.cs -------------------------------------------------------------------------------- /SpaceShooter/WindowsContent/WindowsContent.contentproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/WindowsContent/WindowsContent.contentproj -------------------------------------------------------------------------------- /SpaceShooter/WindowsContent/splash.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/WindowsContent/splash.bmp -------------------------------------------------------------------------------- /SpaceShooter/WindowsContent/trial.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/WindowsContent/trial.bmp -------------------------------------------------------------------------------- /SpaceShooter/WindowsContent/win/Sound Bank.xsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/WindowsContent/win/Sound Bank.xsb -------------------------------------------------------------------------------- /SpaceShooter/WindowsContent/win/Wave Bank.xwb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SpaceShooter/WindowsContent/win/serp6.xgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/WindowsContent/win/serp6.xgs -------------------------------------------------------------------------------- /SpaceShooter/XboxContent/XboxContent.contentproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/XboxContent/XboxContent.contentproj -------------------------------------------------------------------------------- /SpaceShooter/XboxContent/xbox/Sound Bank.xsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/XboxContent/xbox/Sound Bank.xsb -------------------------------------------------------------------------------- /SpaceShooter/XboxContent/xbox/serp6.xgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/XboxContent/xbox/serp6.xgs -------------------------------------------------------------------------------- /SpaceShooter/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/app.config -------------------------------------------------------------------------------- /SpaceShooter/eResource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/eResource.Designer.cs -------------------------------------------------------------------------------- /SpaceShooter/eResource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/eResource.resx -------------------------------------------------------------------------------- /SpaceShooter/iResource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/iResource.Designer.cs -------------------------------------------------------------------------------- /SpaceShooter/iResource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/iResource.resx -------------------------------------------------------------------------------- /SpaceShooter/renameLower.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/SpaceShooter/renameLower.sh -------------------------------------------------------------------------------- /TrianglePickingPipeline/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/TrianglePickingPipeline/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TrianglePickingPipeline/TrianglePickingPipeline.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/TrianglePickingPipeline/TrianglePickingPipeline.csproj -------------------------------------------------------------------------------- /TrianglePickingPipeline/TrianglePickingProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blendogames/flotilla/HEAD/TrianglePickingPipeline/TrianglePickingProcessor.cs --------------------------------------------------------------------------------