Changeset 2978
- Timestamp:
- 2012-06-13 10:52:47 (8 years ago)
- Location:
- 2012/24/AkiR/Fight the Rambo/Fight the Rambo
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/Fight the Rambo.csproj
r2966 r2978 62 62 </PropertyGroup> 63 63 <ItemGroup> 64 <Reference Include="Jypeli, Version=5.0.0.0, Culture=neutral, processorArchitecture=x86"> 65 <SpecificVersion>False</SpecificVersion> 66 <HintPath>..\..\..\..\Program Files (x86)\Jypeli\lib\x86\Jypeli.dll</HintPath> 64 <Reference Include="Jypeli"> 65 <HintPath>..\..\..\..\npo\Jypeli\bin\x86\Debug\Jypeli.dll</HintPath> 67 66 </Reference> 68 67 <Reference Include="Microsoft.Xna.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86"> -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/Fight the Rambo.csproj.Debug.cachefile
r2966 r2978 8 8 Content\fence.xnb 9 9 Content\Ammus.xnb 10 Content\Kulta.xnb 10 11 Content\shit.xnb 11 12 Content\kill.xnb 12 13 Content\GameStarts.xnb 13 14 Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.xnb 14 Content\Kulta.xnb15 15 Content\shit.wma 16 16 Content\kill.wma -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/Peli.cs
r2966 r2978 30 30 Image KullanKuva = LoadImage("Kulta"); 31 31 Image AmmuksenKuva = LoadImage("Ammus"); 32 32 33 33 34 34 Image paikallaanVasemmalle = LoadImage("rambo2"); … … 64 64 65 65 66 67 66 67 68 68 } 69 69 … … 73 73 Gravity = new Vector(0, -1000); 74 74 MediaPlayer.Play("GameStarts"); 75 75 76 LuoLaskuri(); 77 LisaavoimaMittari(); 76 78 if (kentanNro == 1) luoKentta1(); 77 79 else if (kentanNro == 2) LuoKentta2(); … … 81 83 lisaaNappaimet(); 82 84 LuoAmmusLaskuri(); 83 LisaavoimaMittari();85 84 86 Camera.Follow(pelaaja1); 85 87 Camera.ZoomFactor = 2.0; 86 88 Camera.StayInLevel = true; 87 89 88 90 89 91 } 90 92 … … 92 94 { 93 95 lisaaPelaaja(20); 94 96 95 97 TileMap kentta = TileMap.FromFile("kentta1.txt"); 96 98 kentta['G'] = lisaaMaali; … … 129 131 Level.Background.CreateGradient(Color.Brown, Color.Blue); 130 132 } 131 133 132 134 133 135 void LuoKentta3() … … 201 203 Add(pelaaja1, 1); 202 204 203 AddCollisionHandler(pelaaja1, VihollinenOsui); 205 206 207 208 204 209 205 210 return pelaaja1; … … 233 238 void AmmuAseella() 234 239 { 235 236 237 238 239 240 241 242 240 PhysicsObject Ammus = pelaaja1.Weapon.Shoot(); 241 if (Ammus != null) 242 { 243 Ammus.Size *= 1; 244 Ammus.IgnoresGravity = true; 245 Ammus.MaximumLifetime = TimeSpan.FromSeconds(4.1); 246 AddCollisionHandler(Ammus, KasitteleVihollinenKuoli); 247 } 243 248 } 244 249 void AmmusOsui(PhysicsObject Ammus, PhysicsObject Kohde) 245 250 { 246 251 247 252 Explosion rajahdys = new Explosion(50); 248 253 rajahdys.Position = Ammus.Position; … … 250 255 } 251 256 252 253 257 258 254 259 255 260 … … 279 284 vihollinen.Brain = seuraajanAivot; 280 285 281 AddCollisionHandler(vihollinen, VihollinenOsui); 286 AddCollisionHandler(pelaaja1, "vihollinen", CollisionHandler.AddMeterValue(voimaMittari, -1)); 287 Vector oikea = new Vector(100, 50); 288 AddCollisionHandler(pelaaja1, "Vihollinen", CollisionHandler.HitObject( oikea )); 282 289 return vihollinen; 283 290 } 284 291 285 void VihollinenOsui(PhysicsObject vihollinen, PhysicsObject kohde) 286 { 287 if (kohde == pelaaja1) 288 { 289 pelaaja1.Destroy(); 290 291 Begin(); 292 } 293 } 294 292 293 295 294 void KasitteleVihollinenKuoli(PhysicsObject Ammus, PhysicsObject kohde) 296 295 { … … 314 313 PhysicsObject LisaaAmmusPaketti() 315 314 { 316 PhysicsObject AmmusPaketti = new PhysicsObject(20, 20);315 PhysicsObject AmmusPaketti = new PhysicsObject(20, 20); 317 316 AmmusPaketti.Image = AmmuksenKuva; 318 317 AmmusPaketti.Mass = (50); 319 AddCollisionHandler(pelaaja1, AmmusPaketti, KeraaAmmus);318 AddCollisionHandler(pelaaja1, AmmusPaketti, KeraaAmmus); 320 319 321 320 … … 329 328 Kulta.Image = KullanKuva; 330 329 Kulta.Mass = (50); 331 //KYSY APUA!! 332 //AddCollisionHandler(pelaaja1, Kulta, Keraakulta); 330 Kulta.Tag = "kulta"; 331 AddCollisionHandler(pelaaja1, Kulta, Keraakulta); 332 333 333 334 334 335 return Kulta; … … 339 340 (pelaaja1 as PlatformCharacter).Weapon.Ammo.Value += 5; 340 341 AmmusPaketti.Destroy(); 341 342 } 343 344 //KYSY APUA!! 345 346 // void Keraakulta(IPhysicsObject pelaaja1, IPhysicsObject Kulta)347 // {348 // (pelaaja1 as PlatformCharacter)?.Value += 100;349 //}342 343 } 344 345 346 void Keraakulta(IPhysicsObject tormaaja, IPhysicsObject kohde) 347 { 348 pisteLaskuri.Value =+ 10; 349 kohde.Destroy(); 350 } 350 351 351 352 void KasitteleMaaliinTulo(PhysicsObject Maali, PhysicsObject kohde) … … 479 480 ammusNaytto.Y = Screen.Top - 100; 480 481 ammusNaytto.TextColor = Color.Black; 481 ammusNaytto.BindTo(pelaaja1.Weapon.Ammo); 482 ammusNaytto.BindTo(pelaaja1.Weapon.Ammo); 482 483 Add(ammusNaytto); 483 484 … … 488 489 Add(ammusTeksti); 489 490 } 490 491 491 492 492 493 void LuoLaskuri() … … 510 511 { 511 512 512 voimaMittari = new DoubleMeter(10 );513 voimaMittari.MaxValue = 10 ;514 ProgressBar voimaPalkki = new ProgressBar( 150, 10);513 voimaMittari = new DoubleMeter(100); 514 voimaMittari.MaxValue = 100; 515 ProgressBar voimaPalkki = new ProgressBar(300, 30); 515 516 voimaPalkki.BindTo(voimaMittari); 516 517 Add(voimaPalkki); … … 525 526 526 527 Label voimaTeksti = new Label(" Terveys: "); 527 voimaTeksti.X = Screen.Right - 850;528 voimaTeksti.X = Screen.Right - 900; 528 529 voimaTeksti.Y = Screen.Top - 100; 529 530 voimaTeksti.TextColor = Color.Black; 530 531 Add(voimaTeksti); 531 532 532 } 533 534 533 534 535 } 536 537 void VihollinenOsui() 538 { 539 540 } 541 542 535 543 } -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/obj/x86/Debug/ContentPipeline-{B0E0BEF2-BE44-4A05-9208-56A1391AC4FE}.xml
r2966 r2978 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-12T1 8: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-12T13:22:43.2637264+03:00</Time> 12 12 </Item> 13 13 <Item> … … 17 17 <Processor>TextureProcessor</Processor> 18 18 <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-1 2T18:18:21.9674671+03:00</Time>19 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\rambo2.xnb</Output> 20 <Time>2012-06-11T15:02:54.0971322+03:00</Time> 21 21 </Item> 22 22 <Item> … … 26 26 <Processor>TextureProcessor</Processor> 27 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-12T1 8:18:21.965467+03:00</Time>28 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\goal.xnb</Output> 29 <Time>2012-06-12T14:12:05.4025264+03:00</Time> 30 30 </Item> 31 31 <Item> … … 35 35 <Processor>TextureProcessor</Processor> 36 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-12T1 8:18:21.949466+03:00</Time>37 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\sponer.xnb</Output> 38 <Time>2012-06-12T14:14:36.6757264+03:00</Time> 39 39 </Item> 40 40 <Item> … … 44 44 <Processor>TextureProcessor</Processor> 45 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-1 2T18:18:21.9094638+03:00</Time>46 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\spikewire.xnb</Output> 47 <Time>2012-06-11T15:02:54.1127322+03:00</Time> 48 48 </Item> 49 49 <Item> … … 53 53 <Processor>TextureProcessor</Processor> 54 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-1 2T21:37:11.3578945+03:00</Time>55 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\TEKSTI.xnb</Output> 56 <Time>2012-06-13T09:38:48.0742826+03:00</Time> 57 57 </Item> 58 58 <Item> … … 62 62 <Processor>TextureProcessor</Processor> 63 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-12T1 8:18:21.9044635+03:00</Time>64 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\ground.xnb</Output> 65 <Time>2012-06-12T14:14:05.3977264+03:00</Time> 66 66 </Item> 67 67 <Item> … … 71 71 <Processor>TextureProcessor</Processor> 72 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-1 2T18:18:21.9564664+03:00</Time>73 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\fence.xnb</Output> 74 <Time>2012-06-11T15:02:54.0815322+03:00</Time> 75 75 </Item> 76 76 <Item> … … 80 80 <Processor>TextureProcessor</Processor> 81 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> 82 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Ammus.xnb</Output> 83 <Time>2012-06-12T12:59:06.8461264+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:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Kulta.xnb</Output> 92 <Time>2012-06-12T13:15:59.8009264+03:00</Time> 84 93 </Item> 85 94 <Item> … … 89 98 <Processor>SongProcessor</Processor> 90 99 <Options>None</Options> 91 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\shit.xnb</Output>92 <Extra>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\shit.wma</Extra>93 <Time>2012-06-1 2T18:18:21.9704673+03:00</Time>100 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\shit.xnb</Output> 101 <Extra>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\shit.wma</Extra> 102 <Time>2012-06-11T15:02:54.0971322+03:00</Time> 94 103 </Item> 95 104 <Item> … … 99 108 <Processor>SongProcessor</Processor> 100 109 <Options>None</Options> 101 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kill.xnb</Output>102 <Extra>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kill.wma</Extra>103 <Time>2012-06-1 2T18:18:21.9514662+03:00</Time>110 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kill.xnb</Output> 111 <Extra>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kill.wma</Extra> 112 <Time>2012-06-11T15:02:54.1439322+03:00</Time> 104 113 </Item> 105 114 <Item> … … 109 118 <Processor>SongProcessor</Processor> 110 119 <Options>None</Options> 111 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\GameStarts.xnb</Output>112 <Extra>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\GameStarts.wma</Extra>113 <Time>2012-06-1 2T18:18:21.9734674+03:00</Time>120 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\GameStarts.xnb</Output> 121 <Extra>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\GameStarts.wma</Extra> 122 <Time>2012-06-11T15:02:54.1439322+03:00</Time> 114 123 </Item> 115 124 <Item> … … 119 128 <Processor>SongProcessor</Processor> 120 129 <Options>None</Options> 121 <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> 122 <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> 123 <Time>2012-06-12T18:18:21.9434657+03:00</Time> 124 </Item> 125 <Item> 126 <Source>Kulta.png</Source> 127 <Name>Kulta</Name> 128 <Importer>TextureImporter</Importer> 129 <Processor>TextureProcessor</Processor> 130 <Options>None</Options> 131 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Kulta.xnb</Output> 132 <Time>2012-06-12T18:18:21.9544663+03:00</Time> 130 <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> 131 <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> 132 <Time>2012-06-11T15:02:54.1283322+03:00</Time> 133 133 </Item> 134 134 <BuildSuccessful>true</BuildSuccessful> … … 139 139 <BuildConfiguration>Debug</BuildConfiguration> 140 140 <CompressContent>false</CompressContent> 141 <RootDirectory>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the RamboContent\</RootDirectory>142 <LoggerRootDirectory>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\</LoggerRootDirectory>143 <IntermediateDirectory>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\obj\x86\Debug\</IntermediateDirectory>144 <OutputDirectory>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\</OutputDirectory>141 <RootDirectory>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the RamboContent\</RootDirectory> 142 <LoggerRootDirectory>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\</LoggerRootDirectory> 143 <IntermediateDirectory>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\obj\x86\Debug\</IntermediateDirectory> 144 <OutputDirectory>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\</OutputDirectory> 145 145 </Settings> 146 146 <Assemblies> 147 147 <Assembly> 148 148 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.XImporter.dll</Key> 149 <Value>2011-09-01T1 6:22:30+03:00</Value>149 <Value>2011-09-01T17:22:30+03:00</Value> 150 150 </Assembly> 151 151 <Assembly> 152 152 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.VideoImporters.dll</Key> 153 <Value>2011-09-01T1 6:22:30+03:00</Value>153 <Value>2011-09-01T17:22:30+03:00</Value> 154 154 </Assembly> 155 155 <Assembly> 156 156 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.TextureImporter.dll</Key> 157 <Value>2011-09-01T1 6:22:30+03:00</Value>157 <Value>2011-09-01T17:22:30+03:00</Value> 158 158 </Assembly> 159 159 <Assembly> 160 160 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.FBXImporter.dll</Key> 161 <Value>2011-09-01T1 6:22:30+03:00</Value>161 <Value>2011-09-01T17:22:30+03:00</Value> 162 162 </Assembly> 163 163 <Assembly> 164 164 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.EffectImporter.dll</Key> 165 <Value>2011-09-01T1 6:22:30+03:00</Value>165 <Value>2011-09-01T17:22:30+03:00</Value> 166 166 </Assembly> 167 167 <Assembly> 168 168 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.AudioImporters.dll</Key> 169 <Value>2011-09-01T1 6:22:30+03:00</Value>169 <Value>2011-09-01T17:22:30+03:00</Value> 170 170 </Assembly> 171 171 <Assembly> 172 172 <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> 173 <Value>2012-0 6-11T20:59:42.8311135+03:00</Value>173 <Value>2012-03-16T14:32:40.8080137+02:00</Value> 174 174 </Assembly> 175 175 </Assemblies> -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/obj/x86/Debug/Fight the Rambo.csproj.FileListAbsolute.txt
r2966 r2978 56 56 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Fight the Rambo.exe 57 57 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Fight the Rambo.pdb 58 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Jypeli4.dll59 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Jypeli4.xml60 58 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\obj\x86\Debug\Fight the Rambo.pdb 61 59 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Ammus.xnb … … 96 94 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Kulta.xnb 97 95 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Kulta.png 96 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Kulta.xnb 97 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Kulta.png 98 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.pdb 100 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Jypeli.xml -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/obj/x86/Debug/cachefile-{B0E0BEF2-BE44-4A05-9208-56A1391AC4FE}-targetpath.txt
r2966 r2978 8 8 Content\fence.xnb 9 9 Content\Ammus.xnb 10 Content\Kulta.xnb 10 11 Content\shit.xnb 11 12 Content\shit.wma … … 16 17 Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.xnb 17 18 Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.wma 18 Content\Kulta.xnb19 19 Content\Nuhasotilas.png 20 20 Content\fence.png
Note: See TracChangeset
for help on using the changeset viewer.