├── .gitignore ├── Images └── creating-a-new-project.png ├── LICENSE ├── README.md └── Source ├── Complete ├── AlienAttack │ ├── AlienAttackGame.cs │ ├── AlienAttackUniversal.csproj │ ├── AlienAttackUniversal.sln │ ├── AlienAttackUniversal_TemporaryKey.pfx │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── Logo.scale-200.png │ │ ├── SmallLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square310x310Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square71x71Logo.scale-200.png │ │ ├── StoreLogo.png │ │ ├── StoreLogo.scale-200.png │ │ ├── Wide310x150Logo.scale-200.png │ │ ├── uwp_100x100.png │ │ ├── uwp_142x142.png │ │ └── uwp_620x620.png │ ├── AudioManager.cs │ ├── Content │ │ ├── Audiowide-Regular.ttf │ │ ├── Content.mgcb │ │ ├── Font.spritefont │ │ ├── gfx │ │ │ ├── bgScreen.png │ │ │ ├── enemy1 │ │ │ │ ├── enemy1_0.png │ │ │ │ ├── enemy1_1.png │ │ │ │ ├── enemy1_2.png │ │ │ │ ├── enemy1_3.png │ │ │ │ ├── enemy1_4.png │ │ │ │ ├── enemy1_5.png │ │ │ │ ├── enemy1_6.png │ │ │ │ ├── enemy1_7.png │ │ │ │ ├── enemy1_8.png │ │ │ │ └── enemy1_9.png │ │ │ ├── eshot │ │ │ │ ├── eshot_0.png │ │ │ │ ├── eshot_1.png │ │ │ │ └── eshot_2.png │ │ │ ├── explosion │ │ │ │ ├── explosion_0.png │ │ │ │ ├── explosion_1.png │ │ │ │ ├── explosion_2.png │ │ │ │ ├── explosion_3.png │ │ │ │ ├── explosion_4.png │ │ │ │ ├── explosion_5.png │ │ │ │ ├── explosion_6.png │ │ │ │ ├── explosion_7.png │ │ │ │ └── explosion_8.png │ │ │ ├── player │ │ │ │ ├── player.png │ │ │ │ ├── player_l1.png │ │ │ │ ├── player_l2.png │ │ │ │ ├── player_l3.png │ │ │ │ ├── player_r1.png │ │ │ │ ├── player_r2.png │ │ │ │ └── player_r3.png │ │ │ ├── pshot │ │ │ │ ├── pshot_0.png │ │ │ │ ├── pshot_1.png │ │ │ │ └── pshot_2.png │ │ │ └── titleScreen.png │ │ └── sfx │ │ │ ├── enemyShot.wav │ │ │ ├── explosion.wav │ │ │ ├── playerShot.wav │ │ │ └── theme.wma │ ├── GamePage.xaml │ ├── GamePage.xaml.cs │ ├── InputManager.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── RenderTargetScaler.cs │ ├── Screens │ │ ├── GameScreen.cs │ │ └── TitleScreen.cs │ ├── Sprites │ │ ├── Enemy.cs │ │ ├── EnemyGroup.cs │ │ ├── EnemyShot.cs │ │ ├── Explosion.cs │ │ ├── Player.cs │ │ ├── PlayerShot.cs │ │ └── Sprite.cs │ └── project.json └── README.md ├── Ex1 ├── Begin │ ├── AlienAttackGame.cs │ ├── AlienAttackUniversal.csproj │ ├── AlienAttackUniversal.sln │ ├── AlienAttackUniversal_TemporaryKey.pfx │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── Logo.scale-200.png │ │ ├── SmallLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square310x310Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square71x71Logo.scale-200.png │ │ ├── StoreLogo.png │ │ ├── StoreLogo.scale-200.png │ │ ├── Wide310x150Logo.scale-200.png │ │ ├── uwp_100x100.png │ │ ├── uwp_142x142.png │ │ └── uwp_620x620.png │ ├── Content │ │ ├── Audiowide-Regular.ttf │ │ ├── Content.mgcb │ │ ├── Font.spritefont │ │ ├── gfx │ │ │ ├── bgScreen.png │ │ │ ├── enemy1 │ │ │ │ ├── enemy1_0.png │ │ │ │ ├── enemy1_1.png │ │ │ │ ├── enemy1_2.png │ │ │ │ ├── enemy1_3.png │ │ │ │ ├── enemy1_4.png │ │ │ │ ├── enemy1_5.png │ │ │ │ ├── enemy1_6.png │ │ │ │ ├── enemy1_7.png │ │ │ │ ├── enemy1_8.png │ │ │ │ └── enemy1_9.png │ │ │ ├── eshot │ │ │ │ ├── eshot_0.png │ │ │ │ ├── eshot_1.png │ │ │ │ └── eshot_2.png │ │ │ ├── explosion │ │ │ │ ├── explosion_0.png │ │ │ │ ├── explosion_1.png │ │ │ │ ├── explosion_2.png │ │ │ │ ├── explosion_3.png │ │ │ │ ├── explosion_4.png │ │ │ │ ├── explosion_5.png │ │ │ │ ├── explosion_6.png │ │ │ │ ├── explosion_7.png │ │ │ │ └── explosion_8.png │ │ │ ├── player.png │ │ │ ├── pshot │ │ │ │ ├── pshot_0.png │ │ │ │ ├── pshot_1.png │ │ │ │ └── pshot_2.png │ │ │ └── titleScreen.png │ │ └── sfx │ │ │ ├── enemyShot.wav │ │ │ ├── explosion.wav │ │ │ ├── playerShot.wav │ │ │ └── theme.wma │ ├── GamePage.xaml │ ├── GamePage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── RenderTargetScaler.cs │ ├── Sprites │ │ ├── Enemy.cs │ │ ├── EnemyGroup.cs │ │ ├── EnemyShot.cs │ │ ├── Explosion.cs │ │ ├── Player.cs │ │ ├── PlayerShot.cs │ │ └── Sprite.cs │ └── project.json └── End │ ├── AlienAttackGame.cs │ ├── AlienAttackUniversal.csproj │ ├── AlienAttackUniversal.sln │ ├── AlienAttackUniversal_TemporaryKey.pfx │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── Logo.scale-200.png │ ├── SmallLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square310x310Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square71x71Logo.scale-200.png │ ├── StoreLogo.png │ ├── StoreLogo.scale-200.png │ ├── Wide310x150Logo.scale-200.png │ ├── uwp_100x100.png │ ├── uwp_142x142.png │ └── uwp_620x620.png │ ├── Content │ ├── Audiowide-Regular.ttf │ ├── Content.mgcb │ ├── Font.spritefont │ ├── gfx │ │ ├── bgScreen.png │ │ ├── enemy1 │ │ │ ├── enemy1_0.png │ │ │ ├── enemy1_1.png │ │ │ ├── enemy1_2.png │ │ │ ├── enemy1_3.png │ │ │ ├── enemy1_4.png │ │ │ ├── enemy1_5.png │ │ │ ├── enemy1_6.png │ │ │ ├── enemy1_7.png │ │ │ ├── enemy1_8.png │ │ │ └── enemy1_9.png │ │ ├── eshot │ │ │ ├── eshot_0.png │ │ │ ├── eshot_1.png │ │ │ └── eshot_2.png │ │ ├── explosion │ │ │ ├── explosion_0.png │ │ │ ├── explosion_1.png │ │ │ ├── explosion_2.png │ │ │ ├── explosion_3.png │ │ │ ├── explosion_4.png │ │ │ ├── explosion_5.png │ │ │ ├── explosion_6.png │ │ │ ├── explosion_7.png │ │ │ └── explosion_8.png │ │ ├── player.png │ │ ├── pshot │ │ │ ├── pshot_0.png │ │ │ ├── pshot_1.png │ │ │ └── pshot_2.png │ │ └── titleScreen.png │ └── sfx │ │ ├── enemyShot.wav │ │ ├── explosion.wav │ │ ├── playerShot.wav │ │ └── theme.wma │ ├── GamePage.xaml │ ├── GamePage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml │ ├── RenderTargetScaler.cs │ ├── Sprites │ ├── Enemy.cs │ ├── EnemyGroup.cs │ ├── EnemyShot.cs │ ├── Explosion.cs │ ├── Player.cs │ ├── PlayerShot.cs │ └── Sprite.cs │ └── project.json ├── Setup.cmd └── Setup ├── Cleanup.cmd ├── Setup.cmd └── scripts ├── InstallCodeSnippets.cmd ├── installCodeSnippets.ps1 └── snippets ├── IntroMonoGame.vsi └── IntroMonoGameShort.vsi /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/creating-a-new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Images/creating-a-new-project.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/README.md -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/AlienAttackGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/AlienAttackGame.cs -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/AlienAttackUniversal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/AlienAttackUniversal.csproj -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/AlienAttackUniversal.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/AlienAttackUniversal.sln -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/AlienAttackUniversal_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/AlienAttackUniversal_TemporaryKey.pfx -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/App.xaml -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/App.xaml.cs -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Assets/Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Assets/Logo.scale-200.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Assets/SmallLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Assets/SmallLogo.scale-200.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Assets/Square310x310Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Assets/Square310x310Logo.scale-200.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Assets/Square71x71Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Assets/Square71x71Logo.scale-200.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Assets/uwp_100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Assets/uwp_100x100.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Assets/uwp_142x142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Assets/uwp_142x142.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Assets/uwp_620x620.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Assets/uwp_620x620.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/AudioManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/AudioManager.cs -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/Audiowide-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/Audiowide-Regular.ttf -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/Content.mgcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/Content.mgcb -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/Font.spritefont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/Font.spritefont -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/bgScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/bgScreen.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/enemy1/enemy1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/enemy1/enemy1_0.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/enemy1/enemy1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/enemy1/enemy1_1.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/enemy1/enemy1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/enemy1/enemy1_2.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/enemy1/enemy1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/enemy1/enemy1_3.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/enemy1/enemy1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/enemy1/enemy1_4.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/enemy1/enemy1_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/enemy1/enemy1_5.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/enemy1/enemy1_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/enemy1/enemy1_6.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/enemy1/enemy1_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/enemy1/enemy1_7.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/enemy1/enemy1_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/enemy1/enemy1_8.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/enemy1/enemy1_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/enemy1/enemy1_9.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/eshot/eshot_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/eshot/eshot_0.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/eshot/eshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/eshot/eshot_1.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/eshot/eshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/eshot/eshot_2.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/explosion/explosion_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/explosion/explosion_0.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/explosion/explosion_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/explosion/explosion_1.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/explosion/explosion_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/explosion/explosion_2.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/explosion/explosion_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/explosion/explosion_3.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/explosion/explosion_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/explosion/explosion_4.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/explosion/explosion_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/explosion/explosion_5.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/explosion/explosion_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/explosion/explosion_6.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/explosion/explosion_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/explosion/explosion_7.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/explosion/explosion_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/explosion/explosion_8.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/player/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/player/player.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/player/player_l1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/player/player_l1.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/player/player_l2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/player/player_l2.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/player/player_l3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/player/player_l3.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/player/player_r1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/player/player_r1.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/player/player_r2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/player/player_r2.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/player/player_r3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/player/player_r3.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/pshot/pshot_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/pshot/pshot_0.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/pshot/pshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/pshot/pshot_1.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/pshot/pshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/pshot/pshot_2.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/gfx/titleScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/gfx/titleScreen.png -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/sfx/enemyShot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/sfx/enemyShot.wav -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/sfx/explosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/sfx/explosion.wav -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/sfx/playerShot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/sfx/playerShot.wav -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Content/sfx/theme.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Content/sfx/theme.wma -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/GamePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/GamePage.xaml -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/GamePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/GamePage.xaml.cs -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/InputManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/InputManager.cs -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Package.appxmanifest -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/RenderTargetScaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/RenderTargetScaler.cs -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Screens/GameScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Screens/GameScreen.cs -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Screens/TitleScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Screens/TitleScreen.cs -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Sprites/Enemy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Sprites/Enemy.cs -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Sprites/EnemyGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Sprites/EnemyGroup.cs -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Sprites/EnemyShot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Sprites/EnemyShot.cs -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Sprites/Explosion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Sprites/Explosion.cs -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Sprites/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Sprites/Player.cs -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Sprites/PlayerShot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Sprites/PlayerShot.cs -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/Sprites/Sprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/Sprites/Sprite.cs -------------------------------------------------------------------------------- /Source/Complete/AlienAttack/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/AlienAttack/project.json -------------------------------------------------------------------------------- /Source/Complete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Complete/README.md -------------------------------------------------------------------------------- /Source/Ex1/Begin/AlienAttackGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/AlienAttackGame.cs -------------------------------------------------------------------------------- /Source/Ex1/Begin/AlienAttackUniversal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/AlienAttackUniversal.csproj -------------------------------------------------------------------------------- /Source/Ex1/Begin/AlienAttackUniversal.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/AlienAttackUniversal.sln -------------------------------------------------------------------------------- /Source/Ex1/Begin/AlienAttackUniversal_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/AlienAttackUniversal_TemporaryKey.pfx -------------------------------------------------------------------------------- /Source/Ex1/Begin/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/App.xaml -------------------------------------------------------------------------------- /Source/Ex1/Begin/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/App.xaml.cs -------------------------------------------------------------------------------- /Source/Ex1/Begin/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Assets/Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Assets/Logo.scale-200.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Assets/SmallLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Assets/SmallLogo.scale-200.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Assets/Square310x310Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Assets/Square310x310Logo.scale-200.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Assets/Square71x71Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Assets/Square71x71Logo.scale-200.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Assets/uwp_100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Assets/uwp_100x100.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Assets/uwp_142x142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Assets/uwp_142x142.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Assets/uwp_620x620.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Assets/uwp_620x620.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/Audiowide-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/Audiowide-Regular.ttf -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/Content.mgcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/Content.mgcb -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/Font.spritefont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/Font.spritefont -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/bgScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/bgScreen.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/enemy1/enemy1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/enemy1/enemy1_0.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/enemy1/enemy1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/enemy1/enemy1_1.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/enemy1/enemy1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/enemy1/enemy1_2.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/enemy1/enemy1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/enemy1/enemy1_3.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/enemy1/enemy1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/enemy1/enemy1_4.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/enemy1/enemy1_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/enemy1/enemy1_5.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/enemy1/enemy1_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/enemy1/enemy1_6.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/enemy1/enemy1_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/enemy1/enemy1_7.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/enemy1/enemy1_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/enemy1/enemy1_8.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/enemy1/enemy1_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/enemy1/enemy1_9.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/eshot/eshot_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/eshot/eshot_0.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/eshot/eshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/eshot/eshot_1.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/eshot/eshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/eshot/eshot_2.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/explosion/explosion_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/explosion/explosion_0.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/explosion/explosion_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/explosion/explosion_1.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/explosion/explosion_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/explosion/explosion_2.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/explosion/explosion_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/explosion/explosion_3.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/explosion/explosion_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/explosion/explosion_4.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/explosion/explosion_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/explosion/explosion_5.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/explosion/explosion_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/explosion/explosion_6.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/explosion/explosion_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/explosion/explosion_7.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/explosion/explosion_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/explosion/explosion_8.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/player.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/pshot/pshot_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/pshot/pshot_0.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/pshot/pshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/pshot/pshot_1.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/pshot/pshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/pshot/pshot_2.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/gfx/titleScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/gfx/titleScreen.png -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/sfx/enemyShot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/sfx/enemyShot.wav -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/sfx/explosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/sfx/explosion.wav -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/sfx/playerShot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/sfx/playerShot.wav -------------------------------------------------------------------------------- /Source/Ex1/Begin/Content/sfx/theme.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Content/sfx/theme.wma -------------------------------------------------------------------------------- /Source/Ex1/Begin/GamePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/GamePage.xaml -------------------------------------------------------------------------------- /Source/Ex1/Begin/GamePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/GamePage.xaml.cs -------------------------------------------------------------------------------- /Source/Ex1/Begin/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Package.appxmanifest -------------------------------------------------------------------------------- /Source/Ex1/Begin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Ex1/Begin/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Source/Ex1/Begin/RenderTargetScaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/RenderTargetScaler.cs -------------------------------------------------------------------------------- /Source/Ex1/Begin/Sprites/Enemy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Sprites/Enemy.cs -------------------------------------------------------------------------------- /Source/Ex1/Begin/Sprites/EnemyGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Sprites/EnemyGroup.cs -------------------------------------------------------------------------------- /Source/Ex1/Begin/Sprites/EnemyShot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Sprites/EnemyShot.cs -------------------------------------------------------------------------------- /Source/Ex1/Begin/Sprites/Explosion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Sprites/Explosion.cs -------------------------------------------------------------------------------- /Source/Ex1/Begin/Sprites/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Sprites/Player.cs -------------------------------------------------------------------------------- /Source/Ex1/Begin/Sprites/PlayerShot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Sprites/PlayerShot.cs -------------------------------------------------------------------------------- /Source/Ex1/Begin/Sprites/Sprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/Sprites/Sprite.cs -------------------------------------------------------------------------------- /Source/Ex1/Begin/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/Begin/project.json -------------------------------------------------------------------------------- /Source/Ex1/End/AlienAttackGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/AlienAttackGame.cs -------------------------------------------------------------------------------- /Source/Ex1/End/AlienAttackUniversal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/AlienAttackUniversal.csproj -------------------------------------------------------------------------------- /Source/Ex1/End/AlienAttackUniversal.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/AlienAttackUniversal.sln -------------------------------------------------------------------------------- /Source/Ex1/End/AlienAttackUniversal_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/AlienAttackUniversal_TemporaryKey.pfx -------------------------------------------------------------------------------- /Source/Ex1/End/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/App.xaml -------------------------------------------------------------------------------- /Source/Ex1/End/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/App.xaml.cs -------------------------------------------------------------------------------- /Source/Ex1/End/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Source/Ex1/End/Assets/Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Assets/Logo.scale-200.png -------------------------------------------------------------------------------- /Source/Ex1/End/Assets/SmallLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Assets/SmallLogo.scale-200.png -------------------------------------------------------------------------------- /Source/Ex1/End/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Source/Ex1/End/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Source/Ex1/End/Assets/Square310x310Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Assets/Square310x310Logo.scale-200.png -------------------------------------------------------------------------------- /Source/Ex1/End/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Source/Ex1/End/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Source/Ex1/End/Assets/Square71x71Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Assets/Square71x71Logo.scale-200.png -------------------------------------------------------------------------------- /Source/Ex1/End/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Source/Ex1/End/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /Source/Ex1/End/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Source/Ex1/End/Assets/uwp_100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Assets/uwp_100x100.png -------------------------------------------------------------------------------- /Source/Ex1/End/Assets/uwp_142x142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Assets/uwp_142x142.png -------------------------------------------------------------------------------- /Source/Ex1/End/Assets/uwp_620x620.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Assets/uwp_620x620.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/Audiowide-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/Audiowide-Regular.ttf -------------------------------------------------------------------------------- /Source/Ex1/End/Content/Content.mgcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/Content.mgcb -------------------------------------------------------------------------------- /Source/Ex1/End/Content/Font.spritefont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/Font.spritefont -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/bgScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/bgScreen.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/enemy1/enemy1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/enemy1/enemy1_0.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/enemy1/enemy1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/enemy1/enemy1_1.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/enemy1/enemy1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/enemy1/enemy1_2.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/enemy1/enemy1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/enemy1/enemy1_3.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/enemy1/enemy1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/enemy1/enemy1_4.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/enemy1/enemy1_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/enemy1/enemy1_5.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/enemy1/enemy1_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/enemy1/enemy1_6.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/enemy1/enemy1_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/enemy1/enemy1_7.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/enemy1/enemy1_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/enemy1/enemy1_8.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/enemy1/enemy1_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/enemy1/enemy1_9.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/eshot/eshot_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/eshot/eshot_0.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/eshot/eshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/eshot/eshot_1.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/eshot/eshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/eshot/eshot_2.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/explosion/explosion_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/explosion/explosion_0.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/explosion/explosion_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/explosion/explosion_1.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/explosion/explosion_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/explosion/explosion_2.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/explosion/explosion_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/explosion/explosion_3.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/explosion/explosion_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/explosion/explosion_4.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/explosion/explosion_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/explosion/explosion_5.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/explosion/explosion_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/explosion/explosion_6.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/explosion/explosion_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/explosion/explosion_7.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/explosion/explosion_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/explosion/explosion_8.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/player.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/pshot/pshot_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/pshot/pshot_0.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/pshot/pshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/pshot/pshot_1.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/pshot/pshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/pshot/pshot_2.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/gfx/titleScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/gfx/titleScreen.png -------------------------------------------------------------------------------- /Source/Ex1/End/Content/sfx/enemyShot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/sfx/enemyShot.wav -------------------------------------------------------------------------------- /Source/Ex1/End/Content/sfx/explosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/sfx/explosion.wav -------------------------------------------------------------------------------- /Source/Ex1/End/Content/sfx/playerShot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/sfx/playerShot.wav -------------------------------------------------------------------------------- /Source/Ex1/End/Content/sfx/theme.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Content/sfx/theme.wma -------------------------------------------------------------------------------- /Source/Ex1/End/GamePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/GamePage.xaml -------------------------------------------------------------------------------- /Source/Ex1/End/GamePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/GamePage.xaml.cs -------------------------------------------------------------------------------- /Source/Ex1/End/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Package.appxmanifest -------------------------------------------------------------------------------- /Source/Ex1/End/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Ex1/End/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Source/Ex1/End/RenderTargetScaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/RenderTargetScaler.cs -------------------------------------------------------------------------------- /Source/Ex1/End/Sprites/Enemy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Sprites/Enemy.cs -------------------------------------------------------------------------------- /Source/Ex1/End/Sprites/EnemyGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Sprites/EnemyGroup.cs -------------------------------------------------------------------------------- /Source/Ex1/End/Sprites/EnemyShot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Sprites/EnemyShot.cs -------------------------------------------------------------------------------- /Source/Ex1/End/Sprites/Explosion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Sprites/Explosion.cs -------------------------------------------------------------------------------- /Source/Ex1/End/Sprites/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Sprites/Player.cs -------------------------------------------------------------------------------- /Source/Ex1/End/Sprites/PlayerShot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Sprites/PlayerShot.cs -------------------------------------------------------------------------------- /Source/Ex1/End/Sprites/Sprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/Sprites/Sprite.cs -------------------------------------------------------------------------------- /Source/Ex1/End/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Ex1/End/project.json -------------------------------------------------------------------------------- /Source/Setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Setup.cmd -------------------------------------------------------------------------------- /Source/Setup/Cleanup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Setup/Cleanup.cmd -------------------------------------------------------------------------------- /Source/Setup/Setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Setup/Setup.cmd -------------------------------------------------------------------------------- /Source/Setup/scripts/InstallCodeSnippets.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Setup/scripts/InstallCodeSnippets.cmd -------------------------------------------------------------------------------- /Source/Setup/scripts/installCodeSnippets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Setup/scripts/installCodeSnippets.ps1 -------------------------------------------------------------------------------- /Source/Setup/scripts/snippets/IntroMonoGame.vsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Setup/scripts/snippets/IntroMonoGame.vsi -------------------------------------------------------------------------------- /Source/Setup/scripts/snippets/IntroMonoGameShort.vsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-GameDev-5-MonoGameIntro/HEAD/Source/Setup/scripts/snippets/IntroMonoGameShort.vsi --------------------------------------------------------------------------------