- Timestamp:
- 2012-06-15 11:59:57 (11 years ago)
- Location:
- 2012/24/AamosR
- Files:
-
- 20 added
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
2012/24/AamosR/Thunderbird/Thunderbird/Thunderbird/Thunderbird.cs
r3026 r3096 11 11 Image taustaKuva = LoadImage("taustakuva"); 12 12 Image ammusKuva = LoadImage("ammus"); 13 14 SoundEffect ammusAani = LoadSoundEffect("ampumisaani"); 15 SoundEffect vihollisaani = LoadSoundEffect("vihollisaani"); 16 SoundEffect lintuaani = LoadSoundEffect("lintuaani"); 13 17 14 18 Image pilviKuva = LoadImage("pilvi"); … … 17 21 Image[] viholliskuvat2 = LoadImages("vihollinen2", "vihollinen22"); 18 22 Image[] viholliskuvat3 = LoadImages("vihollinen3", "vihollinen32"); 23 Image[] lintukuvat = LoadImages("Thunderbird", "Thunderbird2"); 19 24 20 25 Vector nopeusYlos = new Vector(0, 400); … … 31 36 32 37 PhysicsObject lintu; 33 PhysicsObject tahti;34 PhysicsObject pilvi;35 38 36 39 IntMeter pisteLaskuri; … … 104 107 HighScoreWindow topIkkuna = new HighScoreWindow( 105 108 "Highscores", 106 "",107 109 topLista ); 108 110 topIkkuna.Closed += TallennaPisteet; … … 173 175 void LuoKentta() 174 176 { 175 lintu = new PhysicsObject(1 00, 100);177 lintu = new PhysicsObject(150, 150); 176 178 lintu.Shape = Shape.Rectangle; 179 lintu.Animation = new Animation(lintukuvat); 180 lintu.Animation.FPS = 4; 181 lintu.Animation.Start(); 177 182 lintu.X = -350; 178 183 lintu.Y = 0; … … 185 190 Level.CreateBorders(); 186 191 187 Camera.ZoomTo Level();192 Camera.ZoomToAllObjects(); 188 193 189 194 } … … 230 235 Timer poistumisAjastin = new Timer(); 231 236 poistumisAjastin.Interval = 0.2; 232 poistumisAjastin.Timeout += delegate { vihollinenPoistuu(vihollinen); }; 237 poistumisAjastin.Timeout += delegate { 238 vihollinenPoistuu(vihollinen); }; 233 239 poistumisAjastin.Start(); 234 240 } … … 271 277 void lisaaTahti() 272 278 { 273 tahti = new PhysicsObject(10, 10);279 PhysicsObject tahti = new PhysicsObject(10, 10); 274 280 tahti.Shape = Shape.Star; 275 281 tahti.Color = Color.Yellow; … … 279 285 tahti.CanRotate = false; 280 286 tahti.IgnoresCollisionResponse = true; 281 Add(tahti, -3); 287 Add(tahti, -3); 288 Timer poistumisAjastin = new Timer(); 289 poistumisAjastin.Interval = 0.2; 290 poistumisAjastin.Timeout += delegate { tahtiPoistuu(tahti); }; 291 poistumisAjastin.Start(); 282 292 } 283 293 284 294 void lisaaPilvi() 285 295 { 286 pilvi = new PhysicsObject(80, 50);296 PhysicsObject pilvi = new PhysicsObject(80, 50); 287 297 pilvi.Shape = Shape.Rectangle; 288 298 pilvi.Image = pilviKuva; … … 292 302 pilvi.CanRotate = false; 293 303 pilvi.IgnoresCollisionResponse = true; 294 Add(pilvi, -2); 295 } 296 297 void kuolema(IPhysicsObject lintu, IPhysicsObject vihollinen) 304 Add(pilvi, -2); 305 Timer poistumisAjastin = new Timer(); 306 poistumisAjastin.Interval = 0.2; 307 poistumisAjastin.Timeout += delegate { pilviPoistuu(pilvi); }; 308 poistumisAjastin.Start(); 309 } 310 311 void kuolema(PhysicsObject lintu, PhysicsObject vihollinen) 298 312 { 299 313 lintu.Destroy(); 314 lintuaani.Play(); 300 315 301 316 … … 305 320 HighScoreWindow topIkkuna = new HighScoreWindow( 306 321 "Highscores", 307 " ",322 "Game Over! Input your name to post on the scoreboard.", 308 323 topLista, pisteLaskuri.Value); 309 324 topIkkuna.Closed += TallennaPisteet; … … 316 331 PhysicsObject ammus = new PhysicsObject(60, 40); 317 332 Add (ammus, -1); 318 ammus.X = lintu.X ;333 ammus.X = lintu.X +100; 319 334 ammus.Y = lintu.Y; 320 335 ammus.Shape = Shape.Rectangle; … … 324 339 AddCollisionHandler(ammus, "vihollinen", vihollisenKuolema); 325 340 ammus.Hit(new Vector(900, 0)); 326 } 327 328 void vihollisenKuolema(IPhysicsObject ammus, IPhysicsObject vihollinen) 341 Timer poistumisAjastin = new Timer(); 342 poistumisAjastin.Interval = 0.2; 343 poistumisAjastin.Timeout += delegate { ammusPoistuu(ammus); }; 344 poistumisAjastin.Start(); 345 ammusAani.Play(); 346 } 347 348 void vihollisenKuolema(PhysicsObject ammus, PhysicsObject vihollinen) 329 349 { 330 350 vihollinen.Destroy(); 331 351 ammus.Destroy(); 352 vihollisaani.Play(); 332 353 333 354 pisteLaskuri.Value = pisteLaskuri.Value + 10; … … 342 363 } 343 364 365 void tahtiPoistuu(PhysicsObject tahti) 366 { 367 if (tahti.X < Level.Left -20) 368 { 369 tahti.Destroy(); 370 } 371 } 372 373 void pilviPoistuu(PhysicsObject pilvi) 374 { 375 if (pilvi.X < Level.Left -20) 376 { 377 pilvi.Destroy(); 378 } 379 } 380 381 void ammusPoistuu(PhysicsObject ammus) 382 { 383 if (ammus.X > Level.Right -60) 384 { 385 ammus.Destroy(); 386 } 387 } 388 344 389 } -
2012/24/AamosR/Thunderbird/Thunderbird/Thunderbird/Thunderbird.csproj
r2996 r3096 62 62 </PropertyGroup> 63 63 <ItemGroup> 64 <Reference Include="Jypeli4"> 64 <Reference Include="Jypeli, Version=5.0.0.0, Culture=neutral, processorArchitecture=x86"> 65 <SpecificVersion>False</SpecificVersion> 66 <HintPath>..\..\..\..\lib\Jypeli.dll</HintPath> 65 67 </Reference> 66 68 <Reference Include="Microsoft.Xna.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86"> -
2012/24/AamosR/Thunderbird/Thunderbird/Thunderbird/bin/x86/Debug/Data/pisteet.xml
r3027 r3096 1 1 <?xml version="1.0" encoding="utf-8"?> 2 2 <State> 3 <Object Name="default" TypeAssembly="Jypeli 4, Version=4.2.1.0, Culture=neutral, PublicKeyToken=null" Type="ScoreList">4 <Field Name="_scores" Type="Jypeli.ScoreItem[], Jypeli 4, Version=4.2.1.0, Culture=neutral, PublicKeyToken=null">5 <Array Type="Jypeli.ScoreItem[], Jypeli 4, Version=4.2.1.0, Culture=neutral, PublicKeyToken=null">6 <Item Index="0" Type="Jypeli.ScoreItem, Jypeli 4, Version=4.2.1.0, Culture=neutral, PublicKeyToken=null">3 <Object Name="default" TypeAssembly="Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null" Type="ScoreList"> 4 <Field Name="_scores" Type="Jypeli.ScoreItem[], Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 5 <Array Type="Jypeli.ScoreItem[], Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 6 <Item Index="0" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 7 7 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 8 8 <Value>Poikoina</Value> 9 9 </Field> 10 10 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 11 <Value> 40</Value>11 <Value>2350</Value> 12 12 </Field> 13 13 </Item> 14 <Item Index="1" Type="Jypeli.ScoreItem, Jypeli 4, Version=4.2.1.0, Culture=neutral, PublicKeyToken=null">14 <Item Index="1" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 15 15 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 16 16 <Value>Poikoina</Value> 17 17 </Field> 18 18 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 19 <Value> 30</Value>19 <Value>1840</Value> 20 20 </Field> 21 21 </Item> 22 <Item Index="2" Type="Jypeli.ScoreItem, Jypeli 4, Version=4.2.1.0, Culture=neutral, PublicKeyToken=null">22 <Item Index="2" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 23 23 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 24 <Value> Aamos</Value>24 <Value>Poikoina</Value> 25 25 </Field> 26 26 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 27 <Value> 20</Value>27 <Value>1590</Value> 28 28 </Field> 29 29 </Item> 30 <Item Index="3" Type="Jypeli.ScoreItem, Jypeli 4, Version=4.2.1.0, Culture=neutral, PublicKeyToken=null">30 <Item Index="3" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 31 31 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 32 <Value> Aamos</Value>32 <Value>Poikoina</Value> 33 33 </Field> 34 34 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 35 <Value> 20</Value>35 <Value>1540</Value> 36 36 </Field> 37 37 </Item> 38 <Item Index="4" Type="Jypeli.ScoreItem, Jypeli 4, Version=4.2.1.0, Culture=neutral, PublicKeyToken=null">38 <Item Index="4" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 39 39 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 40 <Value> Aamos</Value>40 <Value>Poikoina</Value> 41 41 </Field> 42 42 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 43 <Value>1 0</Value>43 <Value>1160</Value> 44 44 </Field> 45 45 </Item> 46 <Item Index="5" Type="Jypeli.ScoreItem, Jypeli 4, Version=4.2.1.0, Culture=neutral, PublicKeyToken=null">46 <Item Index="5" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 47 47 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 48 <Value> Aamos</Value>48 <Value>Poikoina</Value> 49 49 </Field> 50 50 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 51 <Value> 10</Value>51 <Value>990</Value> 52 52 </Field> 53 53 </Item> 54 <Item Index="6" Type="Jypeli.ScoreItem, Jypeli 4, Version=4.2.1.0, Culture=neutral, PublicKeyToken=null">54 <Item Index="6" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 55 55 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 56 <Value> Aamos</Value>56 <Value>Poikoina</Value> 57 57 </Field> 58 58 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 59 <Value> 10</Value>59 <Value>650</Value> 60 60 </Field> 61 61 </Item> 62 <Item Index="7" Type="Jypeli.ScoreItem, Jypeli 4, Version=4.2.1.0, Culture=neutral, PublicKeyToken=null">62 <Item Index="7" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 63 63 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 64 <Value> -</Value>64 <Value>Poikoina</Value> 65 65 </Field> 66 66 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 67 <Value> 1</Value>67 <Value>570</Value> 68 68 </Field> 69 69 </Item> 70 <Item Index="8" Type="Jypeli.ScoreItem, Jypeli 4, Version=4.2.1.0, Culture=neutral, PublicKeyToken=null">70 <Item Index="8" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 71 71 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 72 <Value> -</Value>72 <Value>Poikoina</Value> 73 73 </Field> 74 74 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 75 <Value> 1</Value>75 <Value>460</Value> 76 76 </Field> 77 77 </Item> 78 <Item Index="9" Type="Jypeli.ScoreItem, Jypeli 4, Version=4.2.1.0, Culture=neutral, PublicKeyToken=null">78 <Item Index="9" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 79 79 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 80 <Value> -</Value>80 <Value>Poikoina</Value> 81 81 </Field> 82 82 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 83 <Value> 1</Value>83 <Value>450</Value> 84 84 </Field> 85 85 </Item> -
2012/24/AamosR/Thunderbird/Thunderbird/Thunderbird/obj/x86/Debug/ContentPipeline-{F4C51669-C54F-40CE-9196-A773D07BD965}.xml
r3026 r3096 83 83 <Time>2012-06-14T13:15:30.5308676+03:00</Time> 84 84 </Item> 85 <Item> 86 <Source>Thunderbird2.png</Source> 87 <Name>Thunderbird2</Name> 88 <Importer>TextureImporter</Importer> 89 <Processor>TextureProcessor</Processor> 90 <Options>None</Options> 91 <Output>C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Content\Thunderbird2.xnb</Output> 92 <Time>2012-06-15T09:29:15.6631097+03:00</Time> 93 </Item> 94 <Item> 95 <Source>Thunderbird.png</Source> 96 <Name>Thunderbird</Name> 97 <Importer>TextureImporter</Importer> 98 <Processor>TextureProcessor</Processor> 99 <Options>None</Options> 100 <Output>C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Content\Thunderbird.xnb</Output> 101 <Time>2012-06-15T09:32:17.7631097+03:00</Time> 102 </Item> 103 <Item> 104 <Source>ampumisaani.wav</Source> 105 <Name>ampumisaani</Name> 106 <Importer>WavImporter</Importer> 107 <Processor>SoundEffectProcessor</Processor> 108 <Options>None</Options> 109 <Output>C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Content\ampumisaani.xnb</Output> 110 <Time>2012-06-15T09:44:57.2789097+03:00</Time> 111 </Item> 112 <Item> 113 <Source>vihollisaani.wav</Source> 114 <Name>vihollisaani</Name> 115 <Importer>WavImporter</Importer> 116 <Processor>SoundEffectProcessor</Processor> 117 <Options>None</Options> 118 <Output>C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Content\vihollisaani.xnb</Output> 119 <Time>2012-06-15T10:07:09.7631097+03:00</Time> 120 </Item> 121 <Item> 122 <Source>lintuaani.wav</Source> 123 <Name>lintuaani</Name> 124 <Importer>WavImporter</Importer> 125 <Processor>SoundEffectProcessor</Processor> 126 <Options>None</Options> 127 <Output>C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Content\lintuaani.xnb</Output> 128 <Time>2012-06-15T10:17:05.9979097+03:00</Time> 129 </Item> 85 130 <BuildSuccessful>true</BuildSuccessful> 86 131 <Settings> -
2012/24/AamosR/Thunderbird/Thunderbird/Thunderbird/obj/x86/Debug/Thunderbird.csproj.FileListAbsolute.txt
r3026 r3096 1 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Thunderbird.exe2 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Thunderbird.pdb3 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Jypeli4.dll4 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Jypeli4.xml5 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\obj\x86\Debug\ResolveAssemblyReference.cache6 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\obj\x86\Debug\Microsoft.Xna.Framework.RuntimeProfile.txt7 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\obj\x86\Debug\Thunderbird.exe8 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\obj\x86\Debug\Thunderbird.pdb9 1 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Content\taustakuva.xnb 10 2 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Content\ammus.xnb … … 16 8 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Content\vihollinen22.xnb 17 9 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Content\vihollinen32.xnb 10 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Content\Thunderbird2.xnb 11 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Content\Thunderbird.xnb 12 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Content\ampumisaani.xnb 13 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Thunderbird.exe 14 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Thunderbird.pdb 15 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Jypeli.dll 16 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Jypeli.xml 17 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\obj\x86\Debug\ResolveAssemblyReference.cache 18 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\obj\x86\Debug\Microsoft.Xna.Framework.RuntimeProfile.txt 19 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\obj\x86\Debug\Thunderbird.exe 20 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\obj\x86\Debug\Thunderbird.pdb 21 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Content\vihollisaani.xnb 22 C:\MyTemp\AamosR\Thunderbird\Thunderbird\Thunderbird\bin\x86\Debug\Content\lintuaani.xnb -
2012/24/AamosR/Thunderbird/Thunderbird/Thunderbird/obj/x86/Debug/cachefile-{F4C51669-C54F-40CE-9196-A773D07BD965}-targetpath.txt
r3026 r3096 8 8 Content\vihollinen22.xnb 9 9 Content\vihollinen32.xnb 10 Content\Thunderbird2.xnb 11 Content\Thunderbird.xnb 12 Content\ampumisaani.xnb 13 Content\vihollisaani.xnb 14 Content\lintuaani.xnb -
2012/24/AamosR/Thunderbird/Thunderbird/ThunderbirdContent/ThunderbirdContent.contentproj
r3026 r3096 107 107 </Compile> 108 108 </ItemGroup> 109 <ItemGroup> 110 <Compile Include="Thunderbird2.png"> 111 <Name>Thunderbird2</Name> 112 <Importer>TextureImporter</Importer> 113 <Processor>TextureProcessor</Processor> 114 </Compile> 115 </ItemGroup> 116 <ItemGroup> 117 <Compile Include="Thunderbird.png"> 118 <Name>Thunderbird</Name> 119 <Importer>TextureImporter</Importer> 120 <Processor>TextureProcessor</Processor> 121 </Compile> 122 </ItemGroup> 123 <ItemGroup> 124 <Compile Include="ampumisaani.wav"> 125 <Name>ampumisaani</Name> 126 <Importer>WavImporter</Importer> 127 <Processor>SoundEffectProcessor</Processor> 128 </Compile> 129 </ItemGroup> 130 <ItemGroup> 131 <Compile Include="vihollisaani.wav"> 132 <Name>vihollisaani</Name> 133 <Importer>WavImporter</Importer> 134 <Processor>SoundEffectProcessor</Processor> 135 </Compile> 136 </ItemGroup> 137 <ItemGroup> 138 <Compile Include="lintuaani.wav"> 139 <Name>lintuaani</Name> 140 <Importer>WavImporter</Importer> 141 <Processor>SoundEffectProcessor</Processor> 142 </Compile> 143 </ItemGroup> 109 144 <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\$(XnaFrameworkVersion)\Microsoft.Xna.GameStudio.ContentPipeline.targets" /> 110 145 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Note: See TracChangeset
for help on using the changeset viewer.