Changeset 8473 for 2017/23/OskariP/Chase
- Timestamp:
- 2017-06-09 12:51:28 (4 years ago)
- Location:
- 2017/23/OskariP/Chase
- Files:
-
- 46 added
- 23 edited
Legend:
- Unmodified
- Added
- Removed
-
2017/23/OskariP/Chase/Chase/Chase/Chase.cs
r8447 r8473 34 34 ruudut.SetTileMethod('C', LuoBox); 35 35 ruudut.SetTileMethod('M', LuoLiiku); 36 ruudut.SetTileMethod('S', LuoLuuranko); 37 ruudut.SetTileMethod('K', LuoPiikki); 38 ruudut.SetTileMethod('T', LuoKumma); 39 ruudut.SetTileMethod('Z', LuoKeem); 40 ruudut.SetTileMethod('D', LuoSpiker); 36 41 ruudut.Execute(); 37 42 Gravity = new Vector(0.0, -800.0); 38 43 Ohjaimet(true); 44 } 45 void LuoKeem(Vector paikka, double leveys, double korkeus) 46 { 47 PhysicsObject keem = new PhysicsObject(leveys + 60, korkeus + 60); 48 keem.Position = paikka; 49 Image KeemKuva = LoadImage("Keem"); 50 keem.Image = KeemKuva; 51 Add(keem); 39 52 } 40 53 void LuoPalikka(Vector paikka, double leveys, double korkeus) … … 52 65 PhysicsObject ovi = PhysicsObject.CreateStaticObject(leveys +40, korkeus + 70); 53 66 ovi.Position = paikka; 67 ovi.CollisionIgnoreGroup = 1; 54 68 ovi.Tag = "ovieteenpain"; 55 69 Image ovikuva = LoadImage("door"); … … 67 81 AddCollisionHandler(pelaaja, "ovieteenpain", tormaaEtuOveen); 68 82 AddCollisionHandler(pelaaja, "boss", tormaaBossiin); 83 AddCollisionHandler(pelaaja, "skele", tormaaSkeleen); 84 AddCollisionHandler(pelaaja, "spike", tormaaSpikeen); 85 AddCollisionHandler(pelaaja, "kumma", tormaaKummaan); 86 AddCollisionHandler(pelaaja, "spiker", tormaaSpikeriin); 69 87 pelaaja.Image = pelaajahahmo; 70 88 } 89 void tormaaSpikeriin(PhysicsObject pelaaja, PhysicsObject spiker) 90 { 91 pelaaja.Destroy(); 92 } 93 void tormaaSpikeen(PhysicsObject pelaaja, PhysicsObject spike) 94 { 95 pelaaja.Destroy(); 96 } 71 97 void tormaaBossiin(PhysicsObject pelaaja, PhysicsObject boss) 72 98 { … … 76 102 77 103 { 78 if (KENTTA < 11)104 if (KENTTA < 25) 79 105 { 80 106 KENTTA++; … … 87 113 pelaaja.Destroy(); 88 114 115 } 116 void tormaaSkeleen(PhysicsObject pelaaja, PhysicsObject skele) 117 { 118 pelaaja.Destroy(); 119 } 120 void tormaaKummaan(PhysicsObject pelaaja, PhysicsObject kumma) 121 { 122 pelaaja.Destroy(); 89 123 } 90 124 void LiikutaPelaajaa(Vector vektori) … … 141 175 pelaaja.Throw(kranu, Angle.FromDegrees(30), 10000); 142 176 kranu.Explosion.AddShockwaveHandler("lepakko", KranaattiOsui); 143 177 kranu.Explosion.AddShockwaveHandler("skele", KranaattiOsui); 144 178 } 145 179 void KranaattiOsui(IPhysicsObject rajahdyksenKohde, Vector v) … … 151 185 PhysicsObject exit = PhysicsObject.CreateStaticObject(leveys+ 40, korkeus+60); 152 186 exit.Position = paikka; 153 187 exit.CollisionIgnoreGroup = 1; 154 188 exit.Tag = "exit"; 155 189 exit.Color = Color.Brown; 156 190 Image exitkuva = LoadImage("door"); 157 191 exit.Image = exitkuva; 158 192 exit.IgnoresCollisionResponse = true; 159 193 Add(exit); 160 194 } … … 184 218 boss.Image = bossKuva; 185 219 FollowerBrain seuraajanAivot = new FollowerBrain(pelaaja); 186 seuraajanAivot.Speed = 60;220 seuraajanAivot.Speed = 52; 187 221 seuraajanAivot.DistanceFar = 1300; 188 222 seuraajanAivot.DistanceClose = 10; … … 205 239 void LuoLiiku(Vector paikka, double leveys, double korkeus) 206 240 { 207 PhysicsObject move = new PhysicsObject(leveys + 20, korkeus +20);241 PhysicsObject move = new PhysicsObject(leveys +60, korkeus +15); 208 242 move.Position = paikka; 243 move.CollisionIgnoreGroup = 1; 209 244 move.CanRotate = false; 210 245 move.Tag = "move"; … … 214 249 List<Vector> polku = new List<Vector>(); 215 250 216 polku.Add(paikka + new Vector(- 100, 0));217 polku.Add(paikka + new Vector( 500, 0));251 polku.Add(paikka + new Vector(-300, 0)); 252 polku.Add(paikka + new Vector(350, 0)); 218 253 219 254 polkuaivo.Path = polku; … … 224 259 Add(move); 225 260 } 261 void LuoLuuranko(Vector paikka, double leveys, double korkeus) 262 { 263 PlatformCharacter skele = new PlatformCharacter(60.0, 70.0); 264 skele.Position = paikka; 265 skele.CanRotate = false; 266 skele.Tag = "skele"; 267 Image skelekuva = LoadImage("skele"); 268 skele.Image = skelekuva; 269 PlatformWandererBrain tasoAivot = new PlatformWandererBrain(); 270 skele.Brain = tasoAivot; 271 tasoAivot.Speed = 150; 272 273 tasoAivot.FallsOffPlatforms = true; 274 tasoAivot.JumpSpeed = 700; 275 tasoAivot.TriesToJump = true; 276 Add(skele); 277 } 278 void LuoPiikki(Vector paikka, double leveys, double korkeus) 279 { 280 PhysicsObject spike = PhysicsObject.CreateStaticObject(leveys + 100, korkeus + 80); 281 spike.Position = paikka; 282 spike.Tag = "spike"; 283 Image spikekuva = LoadImage("spike"); 284 spike.Image = spikekuva; 285 Add(spike); 286 } 287 void LuoKumma(Vector paikka, double leveys, double korkeus) 288 { 289 PhysicsObject kumma = new PhysicsObject(leveys + 60.0, korkeus + 70.0); 290 kumma.Position = paikka; 291 kumma.Tag = "kumma"; 292 Image kummaKuva = LoadImage("ghost"); 293 kumma.Image = kummaKuva; 294 FollowerBrain seuraajanAivot = new FollowerBrain(pelaaja); 295 seuraajanAivot.Speed = 52; 296 seuraajanAivot.DistanceFar = 1300; 297 seuraajanAivot.DistanceClose = 10; 298 kumma.Brain = seuraajanAivot; 299 kumma.CollisionIgnoreGroup = 1; 300 Add(kumma); 301 302 } 303 void LuoSpiker(Vector paikka, double leveys, double korkeus) 304 { 305 PlatformCharacter spiker = new PlatformCharacter(leveys + 100, korkeus + 80); 306 spiker.Position = paikka; 307 spiker.CanRotate = false; 308 spiker.Tag = "spiker"; 309 Image spikerKuva = LoadImage("spike"); 310 spiker.Image = spikerKuva; 311 PlatformWandererBrain tasoAivot = new PlatformWandererBrain(); 312 spiker.Brain = tasoAivot; 313 tasoAivot.Speed = 120; 314 tasoAivot.FallsOffPlatforms = false; 315 Add(spiker); 316 317 } 226 318 } 227 319 -
2017/23/OskariP/Chase/Chase/Chase/Chase.csproj.Debug.cachefile
r8447 r8473 1 1 Content\wewqd.xnb 2 Content\KENTTA1.xnb3 2 Content\BATT.xnb 4 3 Content\MAAAN.xnb 5 Content\KENTTA2.xnb6 4 Content\gost.xnb 7 5 Content\door.xnb 6 Content\ghost.xnb 7 Content\crate.xnb 8 Content\movebox.xnb 9 Content\KENTTA1.xnb 10 Content\KENTTA2.xnb 8 11 Content\KENTTA3.xnb 9 12 Content\KENTTA4.xnb … … 13 16 Content\KENTTA8.xnb 14 17 Content\KENTTA9.xnb 15 Content\ghost.xnb16 18 Content\KENTTA10.xnb 17 Content\crate.xnb18 19 Content\KENTTA11.xnb 19 Content\movebox.xnb20 20 Content\KENTTA12.xnb 21 Content\skele.xnb 22 Content\KENTTA13.xnb 23 Content\spike.xnb 24 Content\KENTTA14.xnb 25 Content\KENTTA15.xnb 26 Content\KENTTA16.xnb 27 Content\KENTTA17.xnb 28 Content\KENTTA18.xnb 29 Content\KENTTA19.xnb 30 Content\KENTTA20.xnb 31 Content\KENTTA21.xnb 32 Content\KENTTA22.xnb 33 Content\KENTTA23.xnb 34 Content\Keem.xnb 35 Content\KENTTA24.xnb 36 Content\KENTTA25.xnb 21 37 Content\KENTTA1.txt -
2017/23/OskariP/Chase/Chase/Chase/bin/x86/Debug/Content/KENTTA1.txt
r8447 r8473 1 1 ###.............##############...................### 2 ##.... E..........############.....................##2 ##...............############.....................## 3 3 #..................................................# 4 4 .................................................... 5 .......... M...............................E.........5 ..........................................E......... 6 6 ........................E........................... 7 7 .................###########........................ -
2017/23/OskariP/Chase/Chase/Chase/obj/x86/Debug/Chase.csproj.FileListAbsolute.txt
r8447 r8473 28 28 C:\Users\Peliohjelmointi\Documents\Visual Studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\movebox.xnb 29 29 C:\Users\Peliohjelmointi\Documents\Visual Studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA12.xnb 30 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\wewqd.xnb 31 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\BATT.xnb 32 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\MAAAN.xnb 33 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\gost.xnb 34 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\door.xnb 35 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\ghost.xnb 36 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\crate.xnb 37 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\movebox.xnb 38 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA1.xnb 39 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA2.xnb 40 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA3.xnb 41 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA4.xnb 42 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA5.xnb 43 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA6.xnb 44 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA7.xnb 45 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA8.xnb 46 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA9.xnb 47 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA10.xnb 48 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA11.xnb 49 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA12.xnb 50 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA1.txt 51 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Chase.exe 52 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Chase.pdb 53 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Jypeli.dll 54 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Jypeli.xml 55 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\obj\x86\Debug\Chase.csprojResolveAssemblyReference.cache 56 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\obj\x86\Debug\Microsoft.Xna.Framework.RuntimeProfile.txt 57 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\obj\x86\Debug\Chase.exe 58 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\obj\x86\Debug\Chase.pdb 59 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\skele.xnb 60 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA13.xnb 61 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\spike.xnb 62 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA14.xnb 63 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA15.xnb 64 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA16.xnb 65 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA17.xnb 66 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA18.xnb 67 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA19.xnb 68 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA20.xnb 69 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA21.xnb 70 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA22.xnb 71 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA23.xnb 72 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\Keem.xnb 73 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA24.xnb 74 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA25.xnb -
2017/23/OskariP/Chase/Chase/Chase/obj/x86/Debug/cachefile-{BC9D5C59-8B14-4E16-A287-18BF984F75F1}-targetpath.txt
r8447 r8473 1 1 Content\wewqd.xnb 2 Content\KENTTA1.xnb3 2 Content\BATT.xnb 4 3 Content\MAAAN.xnb 5 Content\KENTTA2.xnb6 4 Content\gost.xnb 7 5 Content\door.xnb 6 Content\ghost.xnb 7 Content\crate.xnb 8 Content\movebox.xnb 9 Content\KENTTA1.xnb 10 Content\KENTTA2.xnb 8 11 Content\KENTTA3.xnb 9 12 Content\KENTTA4.xnb … … 13 16 Content\KENTTA8.xnb 14 17 Content\KENTTA9.xnb 15 Content\ghost.xnb16 18 Content\KENTTA10.xnb 17 Content\crate.xnb18 19 Content\KENTTA11.xnb 19 Content\movebox.xnb20 20 Content\KENTTA12.xnb 21 Content\skele.xnb 22 Content\KENTTA13.xnb 23 Content\spike.xnb 24 Content\KENTTA14.xnb 25 Content\KENTTA15.xnb 26 Content\KENTTA16.xnb 27 Content\KENTTA17.xnb 28 Content\KENTTA18.xnb 29 Content\KENTTA19.xnb 30 Content\KENTTA20.xnb 31 Content\KENTTA21.xnb 32 Content\KENTTA22.xnb 33 Content\KENTTA23.xnb 34 Content\Keem.xnb 35 Content\KENTTA24.xnb 36 Content\KENTTA25.xnb 21 37 Content\KENTTA1.txt -
2017/23/OskariP/Chase/Chase/ChaseContent/ChaseContent.contentproj
r8447 r8473 186 186 </Compile> 187 187 </ItemGroup> 188 <ItemGroup> 189 <Compile Include="skele.png"> 190 <Name>skele</Name> 191 <Importer>TextureImporter</Importer> 192 <Processor>TextureProcessor</Processor> 193 </Compile> 194 </ItemGroup> 195 <ItemGroup> 196 <Compile Include="KENTTA13.txt"> 197 <Name>KENTTA13</Name> 198 <Importer>TextFileImporter</Importer> 199 <Processor>TextFileContentProcessor</Processor> 200 </Compile> 201 </ItemGroup> 202 <ItemGroup> 203 <Compile Include="spike.png"> 204 <Name>spike</Name> 205 <Importer>TextureImporter</Importer> 206 <Processor>TextureProcessor</Processor> 207 </Compile> 208 </ItemGroup> 209 <ItemGroup> 210 <Compile Include="KENTTA14.txt"> 211 <Name>KENTTA14</Name> 212 <Importer>TextFileImporter</Importer> 213 <Processor>TextFileContentProcessor</Processor> 214 </Compile> 215 </ItemGroup> 216 <ItemGroup> 217 <Compile Include="KENTTA15.txt"> 218 <Name>KENTTA15</Name> 219 <Importer>TextFileImporter</Importer> 220 <Processor>TextFileContentProcessor</Processor> 221 </Compile> 222 </ItemGroup> 223 <ItemGroup> 224 <Compile Include="KENTTA16.txt"> 225 <Name>KENTTA16</Name> 226 <Importer>TextFileImporter</Importer> 227 <Processor>TextFileContentProcessor</Processor> 228 </Compile> 229 </ItemGroup> 230 <ItemGroup> 231 <Compile Include="KENTTA17.txt"> 232 <Name>KENTTA17</Name> 233 <Importer>TextFileImporter</Importer> 234 <Processor>TextFileContentProcessor</Processor> 235 </Compile> 236 </ItemGroup> 237 <ItemGroup> 238 <Compile Include="KENTTA18.txt"> 239 <Name>KENTTA18</Name> 240 <Importer>TextFileImporter</Importer> 241 <Processor>TextFileContentProcessor</Processor> 242 </Compile> 243 </ItemGroup> 244 <ItemGroup> 245 <Compile Include="KENTTA19.txt"> 246 <Name>KENTTA19</Name> 247 <Importer>TextFileImporter</Importer> 248 <Processor>TextFileContentProcessor</Processor> 249 </Compile> 250 </ItemGroup> 251 <ItemGroup> 252 <Compile Include="KENTTA20.txt"> 253 <Name>KENTTA20</Name> 254 <Importer>TextFileImporter</Importer> 255 <Processor>TextFileContentProcessor</Processor> 256 </Compile> 257 </ItemGroup> 258 <ItemGroup> 259 <Compile Include="KENTTA21.txt"> 260 <Name>KENTTA21</Name> 261 <Importer>TextFileImporter</Importer> 262 <Processor>TextFileContentProcessor</Processor> 263 </Compile> 264 </ItemGroup> 265 <ItemGroup> 266 <Compile Include="KENTTA24.txt"> 267 <Name>KENTTA24</Name> 268 <Importer>TextFileImporter</Importer> 269 <Processor>TextFileContentProcessor</Processor> 270 </Compile> 271 </ItemGroup> 272 <ItemGroup> 273 <Compile Include="KENTTA25.txt"> 274 <Name>KENTTA25</Name> 275 <Importer>TextFileImporter</Importer> 276 <Processor>TextFileContentProcessor</Processor> 277 </Compile> 278 </ItemGroup> 279 <ItemGroup> 280 <Compile Include="Keem.jpg"> 281 <Name>Keem</Name> 282 <Importer>TextureImporter</Importer> 283 <Processor>TextureProcessor</Processor> 284 </Compile> 285 </ItemGroup> 286 <ItemGroup> 287 <Compile Include="KENTTA22.txt"> 288 <Name>KENTTA22</Name> 289 <Importer>TextFileImporter</Importer> 290 <Processor>TextFileContentProcessor</Processor> 291 </Compile> 292 </ItemGroup> 293 <ItemGroup> 294 <Compile Include="KENTTA23.txt"> 295 <Name>KENTTA23</Name> 296 <Importer>TextFileImporter</Importer> 297 <Processor>TextFileContentProcessor</Processor> 298 </Compile> 299 </ItemGroup> 188 300 <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\$(XnaFrameworkVersion)\Microsoft.Xna.GameStudio.ContentPipeline.targets" /> 189 301 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
2017/23/OskariP/Chase/Chase/ChaseContent/KENTTA1.txt
r8447 r8473 1 1 ###.............##############...................### 2 ##.... E..........############.....................##2 ##...............############.....................## 3 3 #..................................................# 4 4 .................................................... 5 .......... M...............................E.........5 ..........................................E......... 6 6 ........................E........................... 7 7 .................###########........................ -
2017/23/OskariP/Chase/Chase/ChaseContent/KENTTA12.txt
r8447 r8473 1 ###.................. ..###################....#######.......###2 ##.................... .....###########.........#####.........##3 #...................... ........###............................#4 ............P.................... ..............................5 ........o........................ ..........................O...1 ###..................#####....................#######.......### 2 ##....................###......................#####.........## 3 #......................#......................................# 4 ............P....................###........................... 5 ........o........................###.......................O... 6 6 ##....#########....................M.................########## 7 7 #.....########.........................................######## -
2017/23/OskariP/Chase/Chase/ChaseContent/KENTTA7.txt
r8447 r8473 10 10 #####################################...........################..........###############################################...........### 11 11 ##########......................................################..........####################......................................### 12 #########............................... E......#################..........###################...............................E......####12 #########......................................#################..........###################......................................#### 13 13 ########......................................##################........####################......................................##### 14 14 #######......................................###############..................#############......................................###### … … 23 23 ##########......................................##############################################......................................### 24 24 #########......................................##############################################......................................#### 25 ########......................................##############################################................................ E.....#####25 ########......................................##############################################......................................##### 26 26 #######......................................##############################################......................................###### 27 27 #######..................##################################################################..................########################## -
2017/23/OskariP/Chase/Chase/ChaseContent/KENTTA9.txt
r8447 r8473 15 15 ####..............#..........###..........#...............#### 16 16 ####..............#.......................#...............#### 17 #####........ ######.......................######.........#####18 ###### ........####.........................####.........######19 ####### .......................P........................#######17 #####.........#####.......................#####..........##### 18 ########.......###.........................###........######## 19 ########......................P.......................######## 20 20 ########..............................................######## 21 21 #########............................................######### -
2017/23/OskariP/Chase/Chase/ChaseContent/obj/x86/Debug/ChaseContent.contentproj.FileListAbsolute.txt
r8447 r8473 1 1 C:\Users\Peliohjelmointi\Documents\Visual Studio 2013\Projects\Chase\Chase\ChaseContent\obj\x86\Debug\ChaseContent.contentprojResolveAssemblyReference.cache 2 C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\ChaseContent\obj\x86\Debug\ChaseContent.contentprojResolveAssemblyReference.cache -
2017/23/OskariP/Chase/Chase/ChaseContent/obj/x86/Debug/ContentPipeline.xml
r8447 r8473 8 8 <Processor>TextureProcessor</Processor> 9 9 <Options>None</Options> 10 <Output> c:\users\peliohjelmointi\documents\visual studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\wewqd.xnb</Output>10 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\wewqd.xnb</Output> 11 11 <Time>2017-06-05T15:22:34.8673926+03:00</Time> 12 </Item> 13 <Item> 14 <Source>BATT.png</Source> 15 <Name>BATT</Name> 16 <Importer>TextureImporter</Importer> 17 <Processor>TextureProcessor</Processor> 18 <Options>None</Options> 19 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\BATT.xnb</Output> 20 <Time>2017-06-06T14:52:07.9685842+03:00</Time> 21 </Item> 22 <Item> 23 <Source>MAAAN.png</Source> 24 <Name>MAAAN</Name> 25 <Importer>TextureImporter</Importer> 26 <Processor>TextureProcessor</Processor> 27 <Options>None</Options> 28 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\MAAAN.xnb</Output> 29 <Time>2017-06-06T15:31:54.34434+03:00</Time> 30 </Item> 31 <Item> 32 <Source>gost.png</Source> 33 <Name>gost</Name> 34 <Importer>TextureImporter</Importer> 35 <Processor>TextureProcessor</Processor> 36 <Options>None</Options> 37 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\gost.xnb</Output> 38 <Time>2017-06-07T10:34:18.3876748+03:00</Time> 39 </Item> 40 <Item> 41 <Source>door.png</Source> 42 <Name>door</Name> 43 <Importer>TextureImporter</Importer> 44 <Processor>TextureProcessor</Processor> 45 <Options>None</Options> 46 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\door.xnb</Output> 47 <Time>2017-06-07T11:16:18.608649+03:00</Time> 48 </Item> 49 <Item> 50 <Source>ghost.png</Source> 51 <Name>ghost</Name> 52 <Importer>TextureImporter</Importer> 53 <Processor>TextureProcessor</Processor> 54 <Options>None</Options> 55 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\ghost.xnb</Output> 56 <Time>2017-06-07T22:22:12.0001246+03:00</Time> 57 </Item> 58 <Item> 59 <Source>crate.png</Source> 60 <Name>crate</Name> 61 <Importer>TextureImporter</Importer> 62 <Processor>TextureProcessor</Processor> 63 <Options>None</Options> 64 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\crate.xnb</Output> 65 <Time>2017-06-08T10:16:40.1093658+03:00</Time> 66 </Item> 67 <Item> 68 <Source>movebox.png</Source> 69 <Name>movebox</Name> 70 <Importer>TextureImporter</Importer> 71 <Processor>TextureProcessor</Processor> 72 <Options>None</Options> 73 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\movebox.xnb</Output> 74 <Time>2017-06-08T12:02:28.263539+03:00</Time> 12 75 </Item> 13 76 <Item> … … 17 80 <Processor>TextFileContentProcessor</Processor> 18 81 <Options>None</Options> 19 <Output>C:\Users\Peliohjelmointi\documents\visual studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA1.xnb</Output> 20 <Time>2017-06-08T12:45:26.2688139+03:00</Time> 21 </Item> 22 <Item> 23 <Source>BATT.png</Source> 24 <Name>BATT</Name> 25 <Importer>TextureImporter</Importer> 26 <Processor>TextureProcessor</Processor> 27 <Options>None</Options> 28 <Output>C:\Users\Peliohjelmointi\documents\visual studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\BATT.xnb</Output> 29 <Time>2017-06-06T14:52:07.9685842+03:00</Time> 30 </Item> 31 <Item> 32 <Source>MAAAN.png</Source> 33 <Name>MAAAN</Name> 34 <Importer>TextureImporter</Importer> 35 <Processor>TextureProcessor</Processor> 36 <Options>None</Options> 37 <Output>C:\Users\Peliohjelmointi\documents\visual studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\MAAAN.xnb</Output> 38 <Time>2017-06-06T15:31:54.34434+03:00</Time> 82 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA1.xnb</Output> 83 <Time>2017-06-09T11:36:07.98067+03:00</Time> 39 84 </Item> 40 85 <Item> … … 44 89 <Processor>TextFileContentProcessor</Processor> 45 90 <Options>None</Options> 46 <Output>C:\Users\Peliohjelmointi\ documents\visual studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA2.xnb</Output>91 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA2.xnb</Output> 47 92 <Time>2017-06-07T15:40:16.7228992+03:00</Time> 48 </Item>49 <Item>50 <Source>gost.png</Source>51 <Name>gost</Name>52 <Importer>TextureImporter</Importer>53 <Processor>TextureProcessor</Processor>54 <Options>None</Options>55 <Output>C:\Users\Peliohjelmointi\documents\visual studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\gost.xnb</Output>56 <Time>2017-06-07T10:34:18.3876748+03:00</Time>57 </Item>58 <Item>59 <Source>door.png</Source>60 <Name>door</Name>61 <Importer>TextureImporter</Importer>62 <Processor>TextureProcessor</Processor>63 <Options>None</Options>64 <Output>C:\Users\Peliohjelmointi\documents\visual studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\door.xnb</Output>65 <Time>2017-06-07T11:16:18.608649+03:00</Time>66 93 </Item> 67 94 <Item> … … 71 98 <Processor>TextFileContentProcessor</Processor> 72 99 <Options>None</Options> 73 <Output>C:\Users\Peliohjelmointi\ documents\visual studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA3.xnb</Output>74 <Time>2017-06-0 8T09:28:33.1786818+03:00</Time>100 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA3.xnb</Output> 101 <Time>2017-06-09T12:02:17.5880036+03:00</Time> 75 102 </Item> 76 103 <Item> … … 80 107 <Processor>TextFileContentProcessor</Processor> 81 108 <Options>None</Options> 82 <Output>C:\Users\Peliohjelmointi\ documents\visual studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA4.xnb</Output>109 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA4.xnb</Output> 83 110 <Time>2017-06-07T15:40:16.7208992+03:00</Time> 84 111 </Item> … … 89 116 <Processor>TextFileContentProcessor</Processor> 90 117 <Options>None</Options> 91 <Output>C:\Users\Peliohjelmointi\ documents\visual studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA5.xnb</Output>118 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA5.xnb</Output> 92 119 <Time>2017-06-07T16:56:13.672307+03:00</Time> 93 120 </Item> … … 98 125 <Processor>TextFileContentProcessor</Processor> 99 126 <Options>None</Options> 100 <Output>C:\Users\Peliohjelmointi\ documents\visual studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA6.xnb</Output>127 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA6.xnb</Output> 101 128 <Time>2017-06-07T16:01:29.440766+03:00</Time> 102 129 </Item> … … 107 134 <Processor>TextFileContentProcessor</Processor> 108 135 <Options>None</Options> 109 <Output>C:\Users\Peliohjelmointi\ documents\visual studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA7.xnb</Output>110 <Time>2017-06-08T 10:33:21.3080314+03:00</Time>136 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA7.xnb</Output> 137 <Time>2017-06-08T20:19:20.9700326+03:00</Time> 111 138 </Item> 112 139 <Item> … … 116 143 <Processor>TextFileContentProcessor</Processor> 117 144 <Options>None</Options> 118 <Output>C:\Users\Peliohjelmointi\ documents\visual studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA8.xnb</Output>145 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA8.xnb</Output> 119 146 <Time>2017-06-07T21:15:20.3765196+03:00</Time> 120 147 </Item> … … 125 152 <Processor>TextFileContentProcessor</Processor> 126 153 <Options>None</Options> 127 <Output>C:\Users\Peliohjelmointi\documents\visual studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA9.xnb</Output> 128 <Time>2017-06-08T09:32:15.7577235+03:00</Time> 129 </Item> 130 <Item> 131 <Source>ghost.png</Source> 132 <Name>ghost</Name> 133 <Importer>TextureImporter</Importer> 134 <Processor>TextureProcessor</Processor> 135 <Options>None</Options> 136 <Output>C:\Users\Peliohjelmointi\documents\visual studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\ghost.xnb</Output> 137 <Time>2017-06-07T22:22:12.0001246+03:00</Time> 154 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA9.xnb</Output> 155 <Time>2017-06-08T14:20:08.5863405+03:00</Time> 138 156 </Item> 139 157 <Item> … … 143 161 <Processor>TextFileContentProcessor</Processor> 144 162 <Options>None</Options> 145 <Output>C:\Users\Peliohjelmointi\Documents\ Visual Studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA10.xnb</Output>163 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA10.xnb</Output> 146 164 <Time>2017-06-08T09:51:04.4649171+03:00</Time> 147 </Item>148 <Item>149 <Source>crate.png</Source>150 <Name>crate</Name>151 <Importer>TextureImporter</Importer>152 <Processor>TextureProcessor</Processor>153 <Options>None</Options>154 <Output>C:\Users\Peliohjelmointi\Documents\Visual Studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\crate.xnb</Output>155 <Time>2017-06-08T10:16:40.1093658+03:00</Time>156 165 </Item> 157 166 <Item> … … 161 170 <Processor>TextFileContentProcessor</Processor> 162 171 <Options>None</Options> 163 <Output>C:\Users\Peliohjelmointi\Documents\ Visual Studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA11.xnb</Output>172 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA11.xnb</Output> 164 173 <Time>2017-06-08T11:28:12.6182548+03:00</Time> 165 </Item>166 <Item>167 <Source>movebox.png</Source>168 <Name>movebox</Name>169 <Importer>TextureImporter</Importer>170 <Processor>TextureProcessor</Processor>171 <Options>None</Options>172 <Output>C:\Users\Peliohjelmointi\Documents\Visual Studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\movebox.xnb</Output>173 <Time>2017-06-08T12:02:28.263539+03:00</Time>174 174 </Item> 175 175 <Item> … … 179 179 <Processor>TextFileContentProcessor</Processor> 180 180 <Options>None</Options> 181 <Output>C:\Users\Peliohjelmointi\Documents\Visual Studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA12.xnb</Output> 182 <Time>2017-06-08T11:28:12.6182548+03:00</Time> 181 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA12.xnb</Output> 182 <Time>2017-06-08T15:46:04.285707+03:00</Time> 183 </Item> 184 <Item> 185 <Source>skele.png</Source> 186 <Name>skele</Name> 187 <Importer>TextureImporter</Importer> 188 <Processor>TextureProcessor</Processor> 189 <Options>None</Options> 190 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\skele.xnb</Output> 191 <Time>2017-06-08T15:06:10.1462276+03:00</Time> 192 </Item> 193 <Item> 194 <Source>KENTTA13.txt</Source> 195 <Name>KENTTA13</Name> 196 <Importer>TextFileImporter</Importer> 197 <Processor>TextFileContentProcessor</Processor> 198 <Options>None</Options> 199 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA13.xnb</Output> 200 <Time>2017-06-08T19:26:51.5374742+03:00</Time> 201 </Item> 202 <Item> 203 <Source>spike.png</Source> 204 <Name>spike</Name> 205 <Importer>TextureImporter</Importer> 206 <Processor>TextureProcessor</Processor> 207 <Options>None</Options> 208 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\spike.xnb</Output> 209 <Time>2017-06-08T16:49:43.1942263+03:00</Time> 210 </Item> 211 <Item> 212 <Source>KENTTA14.txt</Source> 213 <Name>KENTTA14</Name> 214 <Importer>TextFileImporter</Importer> 215 <Processor>TextFileContentProcessor</Processor> 216 <Options>None</Options> 217 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA14.xnb</Output> 218 <Time>2017-06-08T23:07:15.1898519+03:00</Time> 219 </Item> 220 <Item> 221 <Source>KENTTA15.txt</Source> 222 <Name>KENTTA15</Name> 223 <Importer>TextFileImporter</Importer> 224 <Processor>TextFileContentProcessor</Processor> 225 <Options>None</Options> 226 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA15.xnb</Output> 227 <Time>2017-06-08T20:40:51.9363577+03:00</Time> 228 </Item> 229 <Item> 230 <Source>KENTTA16.txt</Source> 231 <Name>KENTTA16</Name> 232 <Importer>TextFileImporter</Importer> 233 <Processor>TextFileContentProcessor</Processor> 234 <Options>None</Options> 235 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA16.xnb</Output> 236 <Time>2017-06-08T21:39:28.8914518+03:00</Time> 237 </Item> 238 <Item> 239 <Source>KENTTA17.txt</Source> 240 <Name>KENTTA17</Name> 241 <Importer>TextFileImporter</Importer> 242 <Processor>TextFileContentProcessor</Processor> 243 <Options>None</Options> 244 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA17.xnb</Output> 245 <Time>2017-06-08T21:48:48.4984518+03:00</Time> 246 </Item> 247 <Item> 248 <Source>KENTTA18.txt</Source> 249 <Name>KENTTA18</Name> 250 <Importer>TextFileImporter</Importer> 251 <Processor>TextFileContentProcessor</Processor> 252 <Options>None</Options> 253 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA18.xnb</Output> 254 <Time>2017-06-08T20:40:51.9051587+03:00</Time> 255 </Item> 256 <Item> 257 <Source>KENTTA19.txt</Source> 258 <Name>KENTTA19</Name> 259 <Importer>TextFileImporter</Importer> 260 <Processor>TextFileContentProcessor</Processor> 261 <Options>None</Options> 262 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA19.xnb</Output> 263 <Time>2017-06-08T22:51:54.3496403+03:00</Time> 264 </Item> 265 <Item> 266 <Source>KENTTA20.txt</Source> 267 <Name>KENTTA20</Name> 268 <Importer>TextFileImporter</Importer> 269 <Processor>TextFileContentProcessor</Processor> 270 <Options>None</Options> 271 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA20.xnb</Output> 272 <Time>2017-06-08T22:31:13.3984518+03:00</Time> 273 </Item> 274 <Item> 275 <Source>KENTTA21.txt</Source> 276 <Name>KENTTA21</Name> 277 <Importer>TextFileImporter</Importer> 278 <Processor>TextFileContentProcessor</Processor> 279 <Options>None</Options> 280 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA21.xnb</Output> 281 <Time>2017-06-09T11:35:40.0161921+03:00</Time> 282 </Item> 283 <Item> 284 <Source>KENTTA22.txt</Source> 285 <Name>KENTTA22</Name> 286 <Importer>TextFileImporter</Importer> 287 <Processor>TextFileContentProcessor</Processor> 288 <Options>None</Options> 289 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA22.xnb</Output> 290 <Time>2017-06-09T11:35:02.2032465+03:00</Time> 291 </Item> 292 <Item> 293 <Source>KENTTA23.txt</Source> 294 <Name>KENTTA23</Name> 295 <Importer>TextFileImporter</Importer> 296 <Processor>TextFileContentProcessor</Processor> 297 <Options>None</Options> 298 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA23.xnb</Output> 299 <Time>2017-06-09T11:35:16.5390951+03:00</Time> 300 </Item> 301 <Item> 302 <Source>Keem.jpg</Source> 303 <Name>Keem</Name> 304 <Importer>TextureImporter</Importer> 305 <Processor>TextureProcessor</Processor> 306 <Options>None</Options> 307 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\Keem.xnb</Output> 308 <Time>2017-06-09T09:47:10.0513163+03:00</Time> 309 </Item> 310 <Item> 311 <Source>KENTTA24.txt</Source> 312 <Name>KENTTA24</Name> 313 <Importer>TextFileImporter</Importer> 314 <Processor>TextFileContentProcessor</Processor> 315 <Options>None</Options> 316 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA24.xnb</Output> 317 <Time>2017-06-09T09:51:20.4187493+03:00</Time> 318 </Item> 319 <Item> 320 <Source>KENTTA25.txt</Source> 321 <Name>KENTTA25</Name> 322 <Importer>TextFileImporter</Importer> 323 <Processor>TextFileContentProcessor</Processor> 324 <Options>None</Options> 325 <Output>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\KENTTA25.xnb</Output> 326 <Time>2017-06-09T08:53:40.8752688+03:00</Time> 183 327 </Item> 184 328 <BuildSuccessful>true</BuildSuccessful> … … 188 332 <BuildConfiguration>Debug</BuildConfiguration> 189 333 <CompressContent>false</CompressContent> 190 <RootDirectory>C:\Users\Peliohjelmointi\Documents\ Visual Studio 2013\Projects\Chase\Chase\ChaseContent\</RootDirectory>191 <LoggerRootDirectory>C:\Users\Peliohjelmointi\Documents\ Visual Studio 2013\Projects\Chase\Chase\Chase\</LoggerRootDirectory>192 <IntermediateDirectory>C:\Users\Peliohjelmointi\Documents\ Visual Studio 2013\Projects\Chase\Chase\ChaseContent\obj\x86\Debug\</IntermediateDirectory>193 <OutputDirectory>C:\Users\Peliohjelmointi\Documents\ Visual Studio 2013\Projects\Chase\Chase\Chase\bin\x86\Debug\Content\</OutputDirectory>334 <RootDirectory>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\ChaseContent\</RootDirectory> 335 <LoggerRootDirectory>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\</LoggerRootDirectory> 336 <IntermediateDirectory>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\ChaseContent\obj\x86\Debug\</IntermediateDirectory> 337 <OutputDirectory>C:\Users\Peliohjelmointi\Documents\OskariP\Chase\Chase\Chase\bin\x86\Debug\Content\</OutputDirectory> 194 338 </Settings> 195 339 <Assemblies>
Note: See TracChangeset
for help on using the changeset viewer.