Changeset 3030
- Timestamp:
- 2012-06-14 15:06:17 (9 years ago)
- Location:
- 2012/24/AkiR/Fight the Rambo/Fight the Rambo
- Files:
-
- 8 added
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/Fight the Rambo.csproj.Debug.cachefile
r3013 r3030 1 1 Content\Nuhasotilas.xnb 2 Content\rambo2.xnb3 2 Content\goal.xnb 4 3 Content\sponer.xnb … … 11 10 Content\taysipalkki.xnb 12 11 Content\tyhjapalkki.xnb 12 Content\rambo2.xnb 13 13 Content\shit.xnb 14 Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.xnb 15 Content\kentta1.xnb 16 Content\tausta.xnb 17 Content\rambo3.xnb 18 Content\Nuhasotilas1.xnb 14 19 Content\kill.xnb 15 20 Content\GameStarts.xnb 16 Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.xnb 17 Content\testi.xnb 18 Content\kentta1.xnb 19 Content\Tausta.xnb 21 Content\yes.xnb 20 22 Content\shit.wma 21 Content\kill.wma22 Content\GameStarts.wma23 23 Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.wma 24 24 Content\Nuhasotilas.png … … 26 26 Content\Ammus.png 27 27 Content\Kulta.png 28 Content\Tausta.jpg29 Content\testi.txt30 28 Content\kentta1.txt 29 Content\tausta.png 31 30 kentta1.txt 32 31 TextFile1.txt -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/Peli.cs
r3013 r3030 13 13 const double hyppyNopeus = 750; 14 14 const int RUUDUN_KOKO = 30; 15 ScoreList topLista = new ScoreList(10, false, 0); 15 16 PlatformCharacter pelaaja1; 16 17 GameObject pelaajanpaikka; … … 30 31 Image KullanKuva = LoadImage("Kulta"); 31 32 Image AmmuksenKuva = LoadImage("Ammus"); 33 Image taustakuva = LoadImage("tausta"); 34 SoundEffect eliminointiAani = LoadSoundEffect("kill"); 35 SoundEffect alkuaani = LoadSoundEffect("GameStarts"); 36 SoundEffect Ammuskerattu = LoadSoundEffect("yes"); 32 37 33 34 35 Image paikallaanVasemmalle = LoadImage("rambo2"); 36 Image paikallaanOikealle; 37 Image[] kavelyVasemmalle = LoadImages("rambo2"); 38 39 Image[] paikallaanVasemmalle = LoadImages("rambo2", "rambo3"); 40 Image[] paikallaanOikealle; 41 Image[] kavelyVasemmalle = LoadImages("rambo2", "rambo3"); 38 42 Image[] kavelyOikealle; 39 43 40 Image VihollinenpaikallaanVasemmalle = LoadImage("Nuhasotilas");41 Image VihollinenpaikallaanOikealle;42 Image[] VihollinenKavelyVasemmalle = LoadImages("Nuhasotilas ");44 Image[] VihollinenpaikallaanVasemmalle = LoadImages("Nuhasotilas1", "Nuhasotilas"); 45 Image[] VihollinenpaikallaanOikealle; 46 Image[] VihollinenKavelyVasemmalle = LoadImages("Nuhasotilas1","Nuhasotilas"); 43 47 Image[] VihollinenKavelyOikealle; 44 48 49 50 int pisteet = 0; 51 45 52 IntMeter pisteLaskuri; 46 53 … … 51 58 public override void Begin() 52 59 { 53 54 60 ClearAll(); 61 if (DataStorage.Exists("pisteet.xml")) 62 topLista = DataStorage.Load<ScoreList>(topLista, "pisteet.xml"); 55 63 Valikko(); 56 57 64 } 65 66 void SeuraavaKentta(int kentanNro) 67 { 68 if(pisteLaskuri != null) 69 pisteet = pisteLaskuri.Value; 70 ClearAll(); 71 72 // Hypyn jälkeen kävelyanimaatio ei toimi, jypelin bugi?? 58 73 paikallaanOikealle = Image.Mirror(paikallaanVasemmalle); 59 74 kavelyOikealle = Image.Mirror(kavelyVasemmalle); … … 62 77 VihollinenKavelyOikealle = Image.Mirror(VihollinenKavelyVasemmalle); 63 78 64 65 66 67 68 69 }70 71 void SeuraavaKentta(int kentanNro)72 {73 ClearAll();74 79 Gravity = new Vector(0, -1000); 75 MediaPlayer.Play("GameStarts"); 80 alkuaani.Play(); 81 82 83 76 84 77 85 LuoLaskuri(); … … 80 88 else if (kentanNro == 2) LuoKentta2(); 81 89 else if (kentanNro == 3) LuoKentta3(); 82 else if (kentanNro > 3) LuoKentta4();83 else if (kentanNro > 4) Valikko();90 else if (kentanNro == 4) LuoKentta4(); 91 else if (kentanNro > 4) LopetaPeli(); 84 92 lisaaNappaimet(); 85 93 LuoAmmusLaskuri(); … … 95 103 { 96 104 lisaaPelaaja(15); 105 MediaPlayer.Play("the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34"); 97 106 98 107 TileMap kentta = TileMap.FromLevelAsset("kentta1"); … … 103 112 kentta['S'] = LisaaPiikkilanka; 104 113 kentta['M'] = Lisaamaa; 105 //kentta['F'] = LisaaAita;106 114 kentta['A'] = LisaaAmmusPaketti; 107 115 kentta['T'] = LisaaKulta; … … 112 120 113 121 Level.CreateBorders(); 114 Level.Background.CreateGradient(Color.Brown, Color.Blue); 122 Level.Background.CreateGradient(Color.Brown, Color.Blue); 123 Level.Background.Image = taustakuva; 115 124 } 116 125 void LuoKentta2() 117 126 { 118 127 lisaaPelaaja(15); 128 MediaPlayer.Play("the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34"); 119 129 120 130 TileMap kentta = TileMap.FromFile("TextFile2.txt"); … … 124 134 kentta['N'] = lisaapelaajanPaikka; 125 135 kentta['S'] = LisaaPiikkilanka; 126 kentta['F'] = LisaaAita;127 136 kentta['A'] = LisaaAmmusPaketti; 128 137 kentta['X'] = Lisaaseina; … … 134 143 Level.CreateBorders(); 135 144 Level.Background.CreateGradient(Color.Brown, Color.Blue); 145 Level.Background.Image = taustakuva; 136 146 } 137 147 … … 140 150 { 141 151 lisaaPelaaja(15); 152 MediaPlayer.Play("the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34"); 142 153 143 154 TileMap kentta = TileMap.FromFile("TextFile3.txt"); … … 147 158 kentta['N'] = lisaapelaajanPaikka; 148 159 kentta['S'] = LisaaPiikkilanka; 149 kentta['F'] = LisaaAita;150 160 kentta['A'] = LisaaAmmusPaketti; 151 161 kentta['X'] = Lisaaseina; … … 157 167 Level.CreateBorders(); 158 168 Level.Background.CreateGradient(Color.Brown, Color.Blue); 169 Level.Background.Image = taustakuva; 159 170 } 160 171 void LuoKentta4() 161 172 { 162 173 lisaaPelaaja(15); 174 MediaPlayer.Play("the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34"); 163 175 164 176 TileMap kentta = TileMap.FromFile("TextFile1.txt"); … … 168 180 kentta['N'] = lisaapelaajanPaikka; 169 181 kentta['S'] = LisaaPiikkilanka; 170 kentta['F'] = LisaaAita;171 182 kentta['A'] = LisaaAmmusPaketti; 172 183 kentta['X'] = Lisaaseina; … … 178 189 Level.CreateBorders(); 179 190 Level.Background.CreateGradient(Color.Blue, Color.Black); 191 Level.Background.Image = taustakuva; 192 180 193 } 181 194 GameObject lisaapelaajanPaikka() … … 205 218 pelaaja1.Weapon.X = 2.3; 206 219 220 //pelaaja1.Animation.Start(); 221 //pelaaja1.Animation = new Animation(kavelyOikealle); 207 222 pelaaja1.RightIdleAnimation = new Animation(paikallaanVasemmalle); 208 223 pelaaja1.LeftIdleAnimation = new Animation(paikallaanOikealle); 209 224 pelaaja1.RightWalkingAnimation = new Animation(kavelyVasemmalle); 210 225 pelaaja1.LeftWalkingAnimation = new Animation(kavelyOikealle); 226 pelaaja1.LeftWalkingAnimation.FPS = 10; 227 pelaaja1.RightWalkingAnimation.FPS = 10; 228 pelaaja1.LeftIdleAnimation.FPS = 10; 229 pelaaja1.RightIdleAnimation.FPS = 10; 230 211 231 Add(pelaaja1, 1); 212 232 AddCollisionHandler(pelaaja1, "vihollinen", CollisionHandler.AddMeterValue(voimaMittari, -10)); 213 233 AddCollisionHandler(pelaaja1, "Ansa", CollisionHandler.AddMeterValue(voimaMittari, -2)); 234 214 235 Vector oikea = new Vector(10000, 50); 215 236 Vector vaara = new Vector(1000, 500); … … 250 271 if (Ammus != null) 251 272 { 252 Ammus.Size *= 1;273 Ammus.Size *= 0.5; 253 274 Ammus.IgnoresGravity = true; 254 275 Ammus.MaximumLifetime = TimeSpan.FromSeconds(4.1); … … 258 279 void AmmusOsui(PhysicsObject Ammus, PhysicsObject Kohde) 259 280 { 260 261 Explosion rajahdys = new Explosion(50); 262 rajahdys.Position = Ammus.Position; 281 263 282 Ammus.Destroy(); 264 283 } … … 281 300 vihollinen.RightWalkingAnimation = new Animation(VihollinenKavelyOikealle); 282 301 vihollinen.CanMoveOnAir = true; 302 vihollinen.LeftWalkingAnimation.FPS = 10; 303 vihollinen.RightWalkingAnimation.FPS = 10; 304 vihollinen.LeftIdleAnimation.FPS = 10; 305 vihollinen.RightIdleAnimation.FPS = 10; 283 306 284 307 … … 305 328 if (kohde.Tag.ToString() == "vihollinen") 306 329 { 307 MediaPlayer.Play("kill"); 330 eliminointiAani.Play(); 331 pisteLaskuri.Value += 50; 308 332 kohde.Destroy(); 333 MessageDisplay.Add("vihollinen eliminoitu"); 309 334 310 335 } … … 322 347 PhysicsObject LisaaAmmusPaketti() 323 348 { 324 PhysicsObject AmmusPaketti = new PhysicsObject( 20, 20);349 PhysicsObject AmmusPaketti = new PhysicsObject(40, 30); 325 350 AmmusPaketti.Image = AmmuksenKuva; 326 351 AmmusPaketti.Mass = (50); … … 334 359 PhysicsObject LisaaKulta() 335 360 { 336 PhysicsObject Kulta = new PhysicsObject( 50, 50);361 PhysicsObject Kulta = new PhysicsObject(70, 30); 337 362 Kulta.Image = KullanKuva; 338 363 Kulta.Mass = (50); … … 348 373 { 349 374 (pelaaja1 as PlatformCharacter).Weapon.Ammo.Value += 5; 375 MessageDisplay.Add("5 ammusta lisätty"); 376 Ammuskerattu.Play(); 350 377 AmmusPaketti.Destroy(); 378 351 379 352 380 } … … 355 383 void Keraakulta(IPhysicsObject tormaaja, IPhysicsObject kohde) 356 384 { 357 pisteLaskuri.Value =+ 10; 385 pisteLaskuri.Value += 100; 386 MessageDisplay.Add("100$"); 358 387 kohde.Destroy(); 359 388 } … … 381 410 kohta2.Position = new Vector(300, -60); 382 411 valikonKohdat.Add(kohta2); 383 MediaPlayer.Play("the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34");412 384 413 385 414 foreach (Label valikonKohta in valikonKohdat) … … 422 451 Piikkilanka.Image = piikkilangankuva; 423 452 Piikkilanka.Tag = "Ansa"; 453 424 454 //AddCollisionHandler(Piikkilanka, PiikkilankaanTormays); 425 455 return Piikkilanka; … … 441 471 } 442 472 443 PhysicsObject LisaaAita() 444 { 445 PhysicsObject Aita = PhysicsObject.CreateStaticObject(RUUDUN_KOKO, RUUDUN_KOKO); 446 Aita.Image = aidankuva; 447 Aita.IgnoresCollisionResponse = true; 448 Aita.MakeStatic(); 449 return Aita; 450 } 451 452 //void PiikkilankaanTormays(PhysicsObject Piikkilanka, PhysicsObject kohde) 473 //PhysicsObject LisaaAita() 453 474 //{ 454 // if (kohde == pelaaja1) 455 // { 456 457 // kohde.Destroy(); 458 // ClearAll(); 459 // Begin(); 460 461 462 // } 475 // PhysicsObject Aita = PhysicsObject.CreateStaticObject(RUUDUN_KOKO, RUUDUN_KOKO); 476 // Aita.Image = aidankuva; 477 // Aita.IgnoresCollisionResponse = true; 478 // Aita.MakeStatic(); 479 // return Aita; 463 480 //} 481 482 464 483 465 484 void TahtaaYlos() … … 494 513 ammusNaytto.X = Screen.Right - 100; 495 514 ammusNaytto.Y = Screen.Top - 100; 496 ammusNaytto.TextColor = Color. Black;515 ammusNaytto.TextColor = Color.White; 497 516 ammusNaytto.BindTo(pelaaja1.Weapon.Ammo); 498 517 Add(ammusNaytto); … … 501 520 ammusTeksti.X = Screen.Right - 200; 502 521 ammusTeksti.Y = Screen.Top - 100; 503 ammusTeksti.TextColor = Color. Black;522 ammusTeksti.TextColor = Color.White; 504 523 Add(ammusTeksti); 505 524 } … … 508 527 void LuoLaskuri() 509 528 { 510 pisteLaskuri = new IntMeter( 0);529 pisteLaskuri = new IntMeter(pisteet); 511 530 Label pisteNaytto = new Label(); 512 531 pisteNaytto.X = Screen.Left + 200; 513 532 pisteNaytto.Y = Screen.Top - 100; 514 pisteNaytto.TextColor = Color. Black;533 pisteNaytto.TextColor = Color.White; 515 534 pisteNaytto.BindTo(pisteLaskuri); 516 535 Add(pisteNaytto); … … 519 538 pisteTeksti.X = Screen.Left + 150; 520 539 pisteTeksti.Y = Screen.Top - 100; 521 pisteTeksti.TextColor = Color. Black;540 pisteTeksti.TextColor = Color.White; 522 541 Add(pisteTeksti); 523 542 } … … 527 546 528 547 529 voimaMittari = new DoubleMeter(1 00);548 voimaMittari = new DoubleMeter(1); 530 549 voimaMittari.MaxValue = 100; 550 voimaMittari.LowerLimit += delegate { LopetaPeli(); }; 531 551 532 552 ProgressBar voimaPalkki = new ProgressBar(300, 30); 533 553 voimaPalkki.BindTo(voimaMittari); 534 554 Add(voimaPalkki); 535 536 Timer aikaLaskuri = new Timer();537 aikaLaskuri.Interval = 0.01;538 aikaLaskuri.Timeout += delegate539 {540 if (voimaMittari.Value < 1)541 {542 pelaaja1.Destroy();543 ClearAll();544 Begin();545 }546 else547 {548 aikaLaskuri.Start();549 }550 };551 aikaLaskuri.Start();552 553 555 554 556 … … 564 566 voimaTeksti.X = Screen.Right - 900; 565 567 voimaTeksti.Y = Screen.Top - 100; 566 voimaTeksti.TextColor = Color. Black;568 voimaTeksti.TextColor = Color.White; 567 569 Add(voimaTeksti); 568 570 } 571 572 void LopetaPeli() 573 { 574 pelaaja1.Destroy(); 575 576 HighScoreWindow topIkkuna = new HighScoreWindow( 577 "Parhaat pisteet", 578 "Onneksi olkoon, pääsit listalle pisteillä %p! Syötä nimesi:", 579 topLista, pisteLaskuri.Value); 580 topIkkuna.Closed += Lol; 581 Add(topIkkuna); 582 583 } 584 void Lol(Window sender) 585 { 586 DataStorage.Save<ScoreList>(topLista, "pisteet.xml"); 587 pisteLaskuri.Reset(); 588 pisteet = 0; 589 ClearAll(); 590 Begin(); 591 } 569 592 } -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/TextFile1.txt
r3013 r3030 5 5 6 6 7 A FFFFFFFFFFFFFFFFFFFFFFFFF7 A 8 8 ########################## 9 9 ##FF … … 15 15 ## X#X 16 16 ## XX##X 17 ## XX####X FFFFFG18 ## XX######X FFFFFFFX#####19 # XX#########XX FFFFFFX########20 ## ###X S FFFFFX#######21 ## ####X X S # S X FFFFFX######17 ## XX####X G 18 ## XX######X X##### 19 # XX#########XX X######## 20 ## ###X S X####### 21 ## ####X X S # S X X###### 22 22 ## ATTTT#####XE E EEEE XS##S###S##SX EEE X EEEE X##### 23 23 #############SSS############################################################### -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/kentta1.txt
r3013 r3030 11 11 12 12 13 FFFFFFFFFFFFFFFFFF14 MMMMMMMMMMMMMMMMM MX E E15 F F FM M M MMMMMMMMMMMMMMMMMMMMMMMX13 14 MMMMMMMMMMMMMMMMMX X E E 15 M M M MMMMMMMMMMMMMMMMMMMMMMMX 16 16 M M M M M M MX E 17 M N A FM M M MMMMMMMMMMM18 M T M F M M MFFFM M19 M A M FM MMMM M MMMMMMMMMMMMMMMM20 MMMMMMMMMM M M M FFFFFFFM M17 M N M M M MMMMMMMMMMM 18 M T T M M M M M M 19 M A M M MMMM M MMMMMMMMMMMMMMMM 20 MMMMMMMMMM M M M M M 21 21 M MSSM M M MMMMMMMM M 22 22 M MMMMMMMMMMMMM M M MMMMMMMMMM 23 23 M M M M M 24 M M M M M FFFFFFF24 M M M M M 25 25 M M M M MMMMMMMMX 26 M M MSSSSSSSSSSSSSM MMX E F F27 MSSSSSSSSSSSSSSSSSM MMMMMMMMMMMMMMM MMX E FFFM M28 MMMMMMMMMMMMMMMMMMM MMMMX E MMM X E A XE EFF26 M M MSSSSSSSSSSSSSM MMX E 27 MSSSSSSSSSSSSSSSSSM MMMMMMMMMMMMMMM MMX E M M 28 MMMMMMMMMMMMMMMMMMM MMMMX E MMM X E AXE E 29 29 MMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMX MMM 30 30 M M MX M -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/obj/x86/Debug/ContentPipeline-{B0E0BEF2-BE44-4A05-9208-56A1391AC4FE}.xml
r3013 r3030 8 8 <Processor>TextureProcessor</Processor> 9 9 <Options>None</Options> 10 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Nuhasotilas.xnb</Output> 11 <Time>2012-06-12T18:18:22.0554721+03:00</Time> 10 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Nuhasotilas.xnb</Output> 11 <Time>2012-06-14T13:06:53.3031752+03:00</Time> 12 </Item> 13 <Item> 14 <Source>goal.png</Source> 15 <Name>goal</Name> 16 <Importer>TextureImporter</Importer> 17 <Processor>TextureProcessor</Processor> 18 <Options>None</Options> 19 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\goal.xnb</Output> 20 <Time>2012-06-12T14:12:05.4025264+03:00</Time> 21 </Item> 22 <Item> 23 <Source>sponer.png</Source> 24 <Name>sponer</Name> 25 <Importer>TextureImporter</Importer> 26 <Processor>TextureProcessor</Processor> 27 <Options>None</Options> 28 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\sponer.xnb</Output> 29 <Time>2012-06-12T14:14:36.6757264+03:00</Time> 30 </Item> 31 <Item> 32 <Source>spikewire.png</Source> 33 <Name>spikewire</Name> 34 <Importer>TextureImporter</Importer> 35 <Processor>TextureProcessor</Processor> 36 <Options>None</Options> 37 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\spikewire.xnb</Output> 38 <Time>2012-06-11T15:02:54.1127322+03:00</Time> 39 </Item> 40 <Item> 41 <Source>TEKSTI.png</Source> 42 <Name>TEKSTI</Name> 43 <Importer>TextureImporter</Importer> 44 <Processor>TextureProcessor</Processor> 45 <Options>None</Options> 46 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\TEKSTI.xnb</Output> 47 <Time>2012-06-13T09:38:48.0742826+03:00</Time> 48 </Item> 49 <Item> 50 <Source>ground.png</Source> 51 <Name>ground</Name> 52 <Importer>TextureImporter</Importer> 53 <Processor>TextureProcessor</Processor> 54 <Options>None</Options> 55 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\ground.xnb</Output> 56 <Time>2012-06-12T14:14:05.3977264+03:00</Time> 57 </Item> 58 <Item> 59 <Source>fence.png</Source> 60 <Name>fence</Name> 61 <Importer>TextureImporter</Importer> 62 <Processor>TextureProcessor</Processor> 63 <Options>None</Options> 64 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\fence.xnb</Output> 65 <Time>2012-06-11T15:02:54.0815322+03:00</Time> 66 </Item> 67 <Item> 68 <Source>Ammus.png</Source> 69 <Name>Ammus</Name> 70 <Importer>TextureImporter</Importer> 71 <Processor>TextureProcessor</Processor> 72 <Options>None</Options> 73 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Ammus.xnb</Output> 74 <Time>2012-06-12T12:59:06.8461264+03:00</Time> 75 </Item> 76 <Item> 77 <Source>Kulta.png</Source> 78 <Name>Kulta</Name> 79 <Importer>TextureImporter</Importer> 80 <Processor>TextureProcessor</Processor> 81 <Options>None</Options> 82 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Kulta.xnb</Output> 83 <Time>2012-06-14T10:36:36.0444474+03:00</Time> 84 </Item> 85 <Item> 86 <Source>taysipalkki.png</Source> 87 <Name>taysipalkki</Name> 88 <Importer>TextureImporter</Importer> 89 <Processor>TextureProcessor</Processor> 90 <Options>None</Options> 91 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\taysipalkki.xnb</Output> 92 <Time>2012-06-13T11:38:03.9185826+03:00</Time> 93 </Item> 94 <Item> 95 <Source>tyhjapalkki.png</Source> 96 <Name>tyhjapalkki</Name> 97 <Importer>TextureImporter</Importer> 98 <Processor>TextureProcessor</Processor> 99 <Options>None</Options> 100 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tyhjapalkki.xnb</Output> 101 <Time>2012-06-13T11:38:03.9185826+03:00</Time> 12 102 </Item> 13 103 <Item> … … 17 107 <Processor>TextureProcessor</Processor> 18 108 <Options>None</Options> 19 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\rambo2.xnb</Output> 20 <Time>2012-06-13T22:38:12.5744468+03:00</Time> 21 </Item> 22 <Item> 23 <Source>goal.png</Source> 24 <Name>goal</Name> 25 <Importer>TextureImporter</Importer> 26 <Processor>TextureProcessor</Processor> 27 <Options>None</Options> 28 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\goal.xnb</Output> 29 <Time>2012-06-12T18:18:21.965467+03:00</Time> 30 </Item> 31 <Item> 32 <Source>sponer.png</Source> 33 <Name>sponer</Name> 34 <Importer>TextureImporter</Importer> 35 <Processor>TextureProcessor</Processor> 36 <Options>None</Options> 37 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\sponer.xnb</Output> 38 <Time>2012-06-12T18:18:21.949466+03:00</Time> 39 </Item> 40 <Item> 41 <Source>spikewire.png</Source> 42 <Name>spikewire</Name> 43 <Importer>TextureImporter</Importer> 44 <Processor>TextureProcessor</Processor> 45 <Options>None</Options> 46 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\spikewire.xnb</Output> 47 <Time>2012-06-12T18:18:21.9094638+03:00</Time> 48 </Item> 49 <Item> 50 <Source>TEKSTI.png</Source> 51 <Name>TEKSTI</Name> 52 <Importer>TextureImporter</Importer> 53 <Processor>TextureProcessor</Processor> 54 <Options>None</Options> 55 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\TEKSTI.xnb</Output> 56 <Time>2012-06-12T21:37:11.3578945+03:00</Time> 57 </Item> 58 <Item> 59 <Source>ground.png</Source> 60 <Name>ground</Name> 61 <Importer>TextureImporter</Importer> 62 <Processor>TextureProcessor</Processor> 63 <Options>None</Options> 64 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\ground.xnb</Output> 65 <Time>2012-06-12T18:18:21.9044635+03:00</Time> 66 </Item> 67 <Item> 68 <Source>fence.png</Source> 69 <Name>fence</Name> 70 <Importer>TextureImporter</Importer> 71 <Processor>TextureProcessor</Processor> 72 <Options>None</Options> 73 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\fence.xnb</Output> 74 <Time>2012-06-12T18:18:21.9564664+03:00</Time> 75 </Item> 76 <Item> 77 <Source>Ammus.png</Source> 78 <Name>Ammus</Name> 79 <Importer>TextureImporter</Importer> 80 <Processor>TextureProcessor</Processor> 81 <Options>None</Options> 82 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Ammus.xnb</Output> 83 <Time>2012-06-12T18:18:21.9624668+03:00</Time> 84 </Item> 85 <Item> 86 <Source>Kulta.png</Source> 87 <Name>Kulta</Name> 88 <Importer>TextureImporter</Importer> 89 <Processor>TextureProcessor</Processor> 90 <Options>None</Options> 91 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Kulta.xnb</Output> 92 <Time>2012-06-12T18:18:21.9544663+03:00</Time> 93 </Item> 94 <Item> 95 <Source>taysipalkki.png</Source> 96 <Name>taysipalkki</Name> 97 <Importer>TextureImporter</Importer> 98 <Processor>TextureProcessor</Processor> 99 <Options>None</Options> 100 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\taysipalkki.xnb</Output> 101 <Time>2012-06-13T16:02:09.0149334+03:00</Time> 102 </Item> 103 <Item> 104 <Source>tyhjapalkki.png</Source> 105 <Name>tyhjapalkki</Name> 106 <Importer>TextureImporter</Importer> 107 <Processor>TextureProcessor</Processor> 108 <Options>None</Options> 109 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tyhjapalkki.xnb</Output> 110 <Time>2012-06-13T16:02:08.9989325+03:00</Time> 109 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\rambo2.xnb</Output> 110 <Time>2012-06-14T10:55:14.6972521+03:00</Time> 111 111 </Item> 112 112 <Item> … … 116 116 <Processor>SongProcessor</Processor> 117 117 <Options>None</Options> 118 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\shit.xnb</Output> 119 <Extra>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\shit.wma</Extra> 120 <Time>2012-06-12T18:18:21.9704673+03:00</Time> 121 </Item> 122 <Item> 123 <Source>kill.mp3</Source> 124 <Name>kill</Name> 125 <Importer>Mp3Importer</Importer> 126 <Processor>SongProcessor</Processor> 127 <Options>None</Options> 128 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kill.xnb</Output> 129 <Extra>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kill.wma</Extra> 130 <Time>2012-06-12T18:18:21.9514662+03:00</Time> 131 </Item> 132 <Item> 133 <Source>GameStarts.mp3</Source> 134 <Name>GameStarts</Name> 135 <Importer>Mp3Importer</Importer> 136 <Processor>SongProcessor</Processor> 137 <Options>None</Options> 138 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\GameStarts.xnb</Output> 139 <Extra>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\GameStarts.wma</Extra> 140 <Time>2012-06-12T18:18:21.9734674+03:00</Time> 118 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\shit.xnb</Output> 119 <Extra>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\shit.wma</Extra> 120 <Time>2012-06-11T15:02:54.0971322+03:00</Time> 141 121 </Item> 142 122 <Item> … … 146 126 <Processor>SongProcessor</Processor> 147 127 <Options>None</Options> 148 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.xnb</Output> 149 <Extra>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.wma</Extra> 150 <Time>2012-06-12T18:18:21.9434657+03:00</Time> 151 </Item> 152 <Item> 153 <Source>testi.txt</Source> 154 <Name>testi</Name> 155 <Importer>TextFileImporter</Importer> 156 <Processor>TextFileContentProcessor</Processor> 157 <Options>None</Options> 158 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\testi.xnb</Output> 159 <Time>2012-06-13T16:02:09.0019327+03:00</Time> 128 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.xnb</Output> 129 <Extra>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.wma</Extra> 130 <Time>2012-06-11T15:02:54.1283322+03:00</Time> 160 131 </Item> 161 132 <Item> … … 165 136 <Processor>TextFileContentProcessor</Processor> 166 137 <Options>None</Options> 167 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kentta1.xnb</Output> 168 <Time>2012-06-13T23:25:14.5044747+03:00</Time> 169 </Item> 170 <Item> 171 <Source>Tausta.jpg</Source> 172 <Name>Tausta</Name> 173 <Importer>TextureImporter</Importer> 174 <Processor>TextureProcessor</Processor> 175 <Options>None</Options> 176 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Tausta.xnb</Output> 177 <Time>2009-07-14T08:32:31.67454+03:00</Time> 138 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kentta1.xnb</Output> 139 <Time>2012-06-14T14:01:17.6924491+03:00</Time> 140 </Item> 141 <Item> 142 <Source>tausta.png</Source> 143 <Name>tausta</Name> 144 <Importer>TextureImporter</Importer> 145 <Processor>TextureProcessor</Processor> 146 <Options>None</Options> 147 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tausta.xnb</Output> 148 <Time>2012-06-14T10:26:52.4635765+03:00</Time> 149 </Item> 150 <Item> 151 <Source>rambo3.png</Source> 152 <Name>rambo3</Name> 153 <Importer>TextureImporter</Importer> 154 <Processor>TextureProcessor</Processor> 155 <Options>None</Options> 156 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\rambo3.xnb</Output> 157 <Time>2012-06-14T12:20:33.7575752+03:00</Time> 158 </Item> 159 <Item> 160 <Source>Nuhasotilas1.png</Source> 161 <Name>Nuhasotilas1</Name> 162 <Importer>TextureImporter</Importer> 163 <Processor>TextureProcessor</Processor> 164 <Options>None</Options> 165 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Nuhasotilas1.xnb</Output> 166 <Time>2012-06-14T13:06:34.6611752+03:00</Time> 167 </Item> 168 <Item> 169 <Source>kill.wav</Source> 170 <Name>kill</Name> 171 <Importer>WavImporter</Importer> 172 <Processor>SoundEffectProcessor</Processor> 173 <Options>None</Options> 174 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kill.xnb</Output> 175 <Time>2012-06-14T13:38:21.0622394+03:00</Time> 176 </Item> 177 <Item> 178 <Source>GameStarts.wav</Source> 179 <Name>GameStarts</Name> 180 <Importer>WavImporter</Importer> 181 <Processor>SoundEffectProcessor</Processor> 182 <Options>None</Options> 183 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\GameStarts.xnb</Output> 184 <Time>2012-06-14T13:40:41.5231169+03:00</Time> 185 </Item> 186 <Item> 187 <Source>yes.wav</Source> 188 <Name>yes</Name> 189 <Importer>WavImporter</Importer> 190 <Processor>SoundEffectProcessor</Processor> 191 <Options>None</Options> 192 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\yes.xnb</Output> 193 <Time>2012-06-14T15:01:23.818944+03:00</Time> 178 194 </Item> 179 195 <BuildSuccessful>true</BuildSuccessful> … … 184 200 <BuildConfiguration>Debug</BuildConfiguration> 185 201 <CompressContent>false</CompressContent> 186 <RootDirectory>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the RamboContent\</RootDirectory>187 <LoggerRootDirectory>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\</LoggerRootDirectory>188 <IntermediateDirectory>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\obj\x86\Debug\</IntermediateDirectory>189 <OutputDirectory>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\</OutputDirectory>202 <RootDirectory>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the RamboContent\</RootDirectory> 203 <LoggerRootDirectory>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\</LoggerRootDirectory> 204 <IntermediateDirectory>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\obj\x86\Debug\</IntermediateDirectory> 205 <OutputDirectory>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\</OutputDirectory> 190 206 </Settings> 191 207 <Assemblies> 192 208 <Assembly> 193 209 <Key>C:\Program Files (x86)\Jypeli\lib\ContentExtensions\TextFileContentExtension.dll</Key> 194 <Value>2012-06- 05T10:41:14+03:00</Value>210 <Value>2012-06-13T10:59:54+03:00</Value> 195 211 </Assembly> 196 212 <Assembly> 197 213 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.XImporter.dll</Key> 198 <Value>2011-09-01T1 6:22:30+03:00</Value>214 <Value>2011-09-01T17:22:30+03:00</Value> 199 215 </Assembly> 200 216 <Assembly> 201 217 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.VideoImporters.dll</Key> 202 <Value>2011-09-01T1 6:22:30+03:00</Value>218 <Value>2011-09-01T17:22:30+03:00</Value> 203 219 </Assembly> 204 220 <Assembly> 205 221 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.TextureImporter.dll</Key> 206 <Value>2011-09-01T1 6:22:30+03:00</Value>222 <Value>2011-09-01T17:22:30+03:00</Value> 207 223 </Assembly> 208 224 <Assembly> 209 225 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.FBXImporter.dll</Key> 210 <Value>2011-09-01T1 6:22:30+03:00</Value>226 <Value>2011-09-01T17:22:30+03:00</Value> 211 227 </Assembly> 212 228 <Assembly> 213 229 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.EffectImporter.dll</Key> 214 <Value>2011-09-01T1 6:22:30+03:00</Value>230 <Value>2011-09-01T17:22:30+03:00</Value> 215 231 </Assembly> 216 232 <Assembly> 217 233 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.AudioImporters.dll</Key> 218 <Value>2011-09-01T1 6:22:30+03:00</Value>234 <Value>2011-09-01T17:22:30+03:00</Value> 219 235 </Assembly> 220 236 <Assembly> 221 237 <Key>C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.Xna.Framework.Content.Pipeline\v4.0_4.0.0.0__842cf8be1de50553\Microsoft.Xna.Framework.Content.Pipeline.dll</Key> 222 <Value>2012-0 6-11T20:59:42.8311135+03:00</Value>238 <Value>2012-03-16T14:32:40.8080137+02:00</Value> 223 239 </Assembly> 224 240 </Assemblies> -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/obj/x86/Debug/Fight the Rambo.csproj.FileListAbsolute.txt
r3013 r3030 49 49 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.xnb 50 50 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\shit.wma 51 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kill.wma52 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\GameStarts.wma53 51 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.wma 54 52 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Nuhasotilas.png … … 97 95 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Kulta.png 98 96 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Jypeli.dll 99 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Jypeli.pdb100 97 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Jypeli.xml 101 98 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\taysipalkki.xnb 102 99 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tyhjapalkki.xnb 103 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\testi.xnb104 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\testi.txt105 100 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kentta1.xnb 106 101 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kentta1.txt … … 113 108 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Tausta.xnb 114 109 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Tausta.jpg 110 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tausta.xnb 111 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tausta.png 112 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\rambo3.xnb 113 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Nuhasotilas1.xnb 114 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\yes.xnb -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/obj/x86/Debug/cachefile-{B0E0BEF2-BE44-4A05-9208-56A1391AC4FE}-targetpath.txt
r3013 r3030 1 1 Content\Nuhasotilas.xnb 2 Content\rambo2.xnb3 2 Content\goal.xnb 4 3 Content\sponer.xnb … … 11 10 Content\taysipalkki.xnb 12 11 Content\tyhjapalkki.xnb 12 Content\rambo2.xnb 13 13 Content\shit.xnb 14 14 Content\shit.wma 15 Content\kill.xnb16 Content\kill.wma17 Content\GameStarts.xnb18 Content\GameStarts.wma19 15 Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.xnb 20 16 Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.wma 21 Content\testi.xnb22 17 Content\kentta1.xnb 23 Content\Tausta.xnb 18 Content\tausta.xnb 19 Content\rambo3.xnb 20 Content\Nuhasotilas1.xnb 21 Content\kill.xnb 22 Content\GameStarts.xnb 23 Content\yes.xnb 24 24 Content\Nuhasotilas.png 25 25 Content\fence.png 26 26 Content\Ammus.png 27 27 Content\Kulta.png 28 Content\Tausta.jpg29 Content\testi.txt30 28 Content\kentta1.txt 29 Content\tausta.png -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the RamboContent/Fight the RamboContent.contentproj
r3013 r3030 61 61 </ItemGroup> 62 62 <ItemGroup> 63 <Compile Include="kill.mp3">64 <Name>kill</Name>65 <Importer>Mp3Importer</Importer>66 <Processor>SongProcessor</Processor>67 </Compile>68 </ItemGroup>69 <ItemGroup>70 63 <Compile Include="goal.png"> 71 64 <Name>goal</Name> … … 79 72 <Importer>TextureImporter</Importer> 80 73 <Processor>TextureProcessor</Processor> 81 </Compile>82 </ItemGroup>83 <ItemGroup>84 <Compile Include="GameStarts.mp3">85 <Name>GameStarts</Name>86 <Importer>Mp3Importer</Importer>87 <Processor>SongProcessor</Processor>88 74 </Compile> 89 75 </ItemGroup> … … 170 156 </ItemGroup> 171 157 <ItemGroup> 172 <Compile Include="Tausta.jpg"> 173 <Name>Tausta</Name> 174 <Importer>TextureImporter</Importer> 175 <Processor>TextureProcessor</Processor> 176 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 158 <Compile Include="tausta.png"> 159 <Name>tausta</Name> 160 <Importer>TextureImporter</Importer> 161 <Processor>TextureProcessor</Processor> 162 <CopyToOutputDirectory>Always</CopyToOutputDirectory> 163 </Compile> 164 </ItemGroup> 165 <ItemGroup> 166 <Compile Include="rambo3.png"> 167 <Name>rambo3</Name> 168 <Importer>TextureImporter</Importer> 169 <Processor>TextureProcessor</Processor> 170 </Compile> 171 </ItemGroup> 172 <ItemGroup> 173 <Compile Include="Nuhasotilas1.png"> 174 <Name>Nuhasotilas1</Name> 175 <Importer>TextureImporter</Importer> 176 <Processor>TextureProcessor</Processor> 177 </Compile> 178 </ItemGroup> 179 <ItemGroup> 180 <Compile Include="kill.wav"> 181 <Name>kill</Name> 182 <Importer>WavImporter</Importer> 183 <Processor>SoundEffectProcessor</Processor> 184 </Compile> 185 </ItemGroup> 186 <ItemGroup> 187 <Compile Include="GameStarts.wav"> 188 <Name>GameStarts</Name> 189 <Importer>WavImporter</Importer> 190 <Processor>SoundEffectProcessor</Processor> 191 </Compile> 192 </ItemGroup> 193 <ItemGroup> 194 <Compile Include="yes.wav"> 195 <Name>yes</Name> 196 <Importer>WavImporter</Importer> 197 <Processor>SoundEffectProcessor</Processor> 177 198 </Compile> 178 199 </ItemGroup> -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the RamboContent/kentta1.txt
r3013 r3030 16 16 M M M M M M MX E 17 17 N A F M M M MMMMMMMMMMM 18 TM F M M MFFF M M18 T M F M M MFFF M M 19 19 A M F M MMMM M MMMMMMMMMMMMMMMM 20 20 MMMMMMMMMM M M M FFFFFFFM M
Note: See TracChangeset
for help on using the changeset viewer.