Changeset 3953
- Timestamp:
- 2013-04-27 16:05:22 (10 years ago)
- Location:
- 2012/kerho/AkiP
- Files:
-
- 98 added
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
2012/kerho/AkiP/Kirkle/Kirkle/Kirkle.cs
r3950 r3953 7 7 using Jypeli.Widgets; 8 8 9 10 9 11 public class Kirkle : PhysicsGame 10 12 { … … 15 17 PlatformCharacter pelaaja1; 16 18 19 DoubleMeter elamaLaskuri; 20 IntMeter kolikkoLaskuri; 21 17 22 Image pelaajanKuva = LoadImage("1-KirkleIdle"); 18 23 … … 21 26 private Image[] kirklePudotus = LoadImages("1-KirkleLanding"); 22 27 private Image[] KirkleIdle = LoadImages("1-KirkleIdle"); 28 private Image[] kirkleKipu = LoadImages("KirkleKipu1", "KirkleKipu2", "KirkleKipu1", "KirkleKipu2", "KirkleKipu1", "KirkleKipu2"); 29 private Image[] kasviVihuWalk = LoadImages("KasviVihuKavely1", "KasviVihuKavely2", "KasviVihuKavely1", "KasviVihuKavely3"); 30 private Image[] pahaKirkleWalk = LoadImages("PahaKirkleKavely1", "PahaKirkleKavely2", "PahaKirkleKavely1", "PahaKirkleKavely3"); 31 private Image[] kynttilanvalo = LoadImages("Kynttilanvalo1", "kynttilanvalo2"); 32 private Image[] laavaPintaKuplii = LoadImages("Laava1", "Laava2", "Laava3", "Laava4", "Laava5", "Laava6", "Laava7", "Laava8", "Laava9", "Laava10"); 33 private Image[] laavaKuplii = LoadImages("LaavaKeski1", "LaavaKeski2", "LaavaKeski3", "LaavaKeski4", "LaavaKeski5", "LaavaKeski6", "LaavaKeski7", "LaavaKeski8", "LaavaKeski9", "LaavaKeski10"); 34 private Image[] maalianimaatio = LoadImages("Maali1", "Maali2", "Maali3"); 23 35 24 36 Image tahtiKuva = LoadImage("Kolikko"); … … 26 38 Image palikkaKuva = LoadImage("Palikka"); 27 39 Image kytkinKuva = LoadImage("Kytkin"); 28 Image ruohoKuva = LoadImage("Ruoho ");29 Image maaKuva = LoadImage("Maa ");40 Image ruohoKuva = LoadImage("Ruoho2"); 41 Image maaKuva = LoadImage("Maa2"); 30 42 Image tiiliRuskeaKuva = LoadImage("TiiliRuskea"); 31 43 Image tiiliHarmaaKuva = LoadImage("TiiliHarmaa"); … … 34 46 Image laavaKuva = LoadImage("Laava"); 35 47 Image laavaKeskiKuva = LoadImage("LaavaKeski"); 48 Image puuYlaKuva = LoadImage("PuuYla"); 49 Image puuKeskiKuva = LoadImage("PuuKeski"); 50 Image puuAlaKuva = LoadImage("PuuAla"); 36 51 37 52 SoundEffect maaliAani = LoadSoundEffect("maali"); … … 56 71 Camera.StayInLevel = true; 57 72 73 LisaaElamaLaskuri(); 58 74 LisaaNappaimet(); 59 75 } … … 74 90 kentta.SetTileMethod('*', LisaaTahti); 75 91 kentta.SetTileMethod('G', LisaaMaali); 92 kentta.SetTileMethod('H', LisaaTaustaobjekti, puuYlaKuva); 93 kentta.SetTileMethod('C', LisaaTaustaobjekti, puuKeskiKuva); 94 kentta.SetTileMethod('D', LisaaTaustaobjekti, puuAlaKuva); 95 kentta.SetTileMethod('K', LisaaKynttila); 76 96 kentta.SetTileMethod('N', LisaaPelaaja); 97 kentta.SetTileMethod('1', LisaaKasviVihu); 98 kentta.SetTileMethod('2', LisaaPahaKirkle); 77 99 kentta.Execute(RUUDUN_KOKO, RUUDUN_KOKO); 78 100 Level.CreateBorders(); 79 101 if (kentanNimi.Equals("kentta1")) 80 Level.BackgroundColor = Color. SkyBlue;102 Level.BackgroundColor = Color.LightBlue; 81 103 if (kentanNimi.Equals("kentta2")) 82 104 Level.BackgroundColor = Color.Black; … … 138 160 secretTiili.Position = paikka; 139 161 secretTiili.CollisionIgnoreGroup = 2; 162 secretTiili.IgnoresGravity = true; 163 secretTiili.IgnoresPhysicsLogics = true; 164 secretTiili.IgnoresCollisionResponse = true; 140 165 secretTiili.Color = Color.Brown; 141 166 secretTiili.Image = secretTiiliKuva; … … 168 193 laava.Position = paikka; 169 194 laava.Color = Color.Red; 170 laava.Image = laavaKuva; 195 laava.Animation = new Animation(laavaPintaKuplii); 196 laava.Animation.Start(); 197 laava.Animation.FPS = 10; 171 198 laava.CollisionIgnoreGroup = 1; 172 199 laava.Tag = "laava"; … … 179 206 laavaKeski.Position = paikka; 180 207 laavaKeski.Color = Color.Red; 181 laavaKeski.Image = laavaKeskiKuva; 208 laavaKeski.Animation = new Animation(laavaKuplii); 209 laavaKeski.Animation.Start(); 210 laavaKeski.Animation.FPS = 10; 182 211 laavaKeski.CollisionIgnoreGroup = 1; 183 212 Add(laavaKeski); … … 199 228 maali.Position = paikka; 200 229 maali.Color = Color.Magenta; 230 maali.Animation = new Animation(maalianimaatio); 231 maali.Animation.Start(); 232 maali.Animation.FPS = 5; 201 233 maali.CollisionIgnoreGroup = 1; 202 234 maali.Tag = "maali"; 203 235 Add(maali); 236 } 237 238 void LisaaTaustaobjekti(Vector paikka, double leveys, double korkeus, Image lisattavaKuva) 239 { 240 PhysicsObject taustaobjekti = PhysicsObject.CreateStaticObject(leveys, korkeus); 241 taustaobjekti.Position = paikka; 242 taustaobjekti.Color = Color.JungleGreen; 243 taustaobjekti.CollisionIgnoreGroup = 2; 244 taustaobjekti.IgnoresGravity = true; 245 taustaobjekti.IgnoresPhysicsLogics = true; 246 taustaobjekti.IgnoresCollisionResponse = true; 247 taustaobjekti.Image = lisattavaKuva; 248 Add(taustaobjekti, -1); 249 } 250 251 void LisaaKynttila(Vector paikka, double leveys, double korkeus) 252 { 253 PhysicsObject kynttila = PhysicsObject.CreateStaticObject(leveys, korkeus); 254 kynttila.Position = paikka; 255 kynttila.Color = Color.Orange; 256 kynttila.CollisionIgnoreGroup = 2; 257 kynttila.IgnoresGravity = true; 258 kynttila.IgnoresPhysicsLogics = true; 259 kynttila.IgnoresCollisionResponse = true; 260 kynttila.Animation = new Animation(kynttilanvalo); 261 kynttila.Animation.Start(); 262 kynttila.Animation.FPS = 8; 263 Add(kynttila, -1); 264 204 265 } 205 266 … … 216 277 pelaaja1.Position = paikka; 217 278 pelaaja1.Mass = 4.0; 279 pelaaja1.Restitution = 0.1; 218 280 pelaaja1.Image = pelaajanKuva; 219 pelaaja1.CollisionIgnoreGroup = 2;281 //pelaaja1.CollisionIgnoreGroup = 2; 220 282 AddCollisionHandler(pelaaja1, "tahti", TormaaTahteen); 221 //AddCollisionHandler(pelaaja1, "laava", TormaaLaavaan); 283 AddCollisionHandler(pelaaja1, "vihollinen", TormaaVihuun); 284 AddCollisionHandler(pelaaja1, "laava", TormaaLaavaan); 222 285 AddCollisionHandler(pelaaja1, "maali", delegate(PhysicsObject p, PhysicsObject p2) 223 286 { … … 228 291 } 229 292 293 void LisaaKasviVihu(Vector paikka, double leveys, double korkeus) 294 { 295 Vihu kasviVihu = new Vihu(leveys, korkeus); 296 kasviVihu.Position = paikka; 297 kasviVihu.Color = Color.Green; 298 kasviVihu.Animation = new Animation(kasviVihuWalk); 299 kasviVihu.Animation.Start(); 300 kasviVihu.Animation.FPS = 7; 301 kasviVihu.CollisionIgnoreGroup = 2; 302 kasviVihu.Tag = "vihollinen"; 303 Add(kasviVihu); 304 305 PlatformWandererBrain tasoAivot1 = new PlatformWandererBrain(); 306 tasoAivot1.Speed = 75; 307 tasoAivot1.FallsOffPlatforms = false; 308 //tasoAivot1.TurnWhileMoving = false; 309 310 kasviVihu.Brain = tasoAivot1; 311 } 312 313 void LisaaPahaKirkle(Vector paikka, double leveys, double korkeus) 314 { 315 Vihu pahaKirkle = new Vihu(leveys, korkeus); 316 pahaKirkle.Position = paikka; 317 pahaKirkle.Color = Color.Purple; 318 pahaKirkle.Animation = new Animation(pahaKirkleWalk); 319 pahaKirkle.Animation.Start(); 320 pahaKirkle.Animation.FPS = 7; 321 pahaKirkle.Tag = "vihollinen"; 322 Add(pahaKirkle); 323 324 PlatformWandererBrain tasoAivot2 = new PlatformWandererBrain(); 325 tasoAivot2.Speed = 100; 326 tasoAivot2.FallsOffPlatforms = false; 327 //tasoAivot1.TurnWhileMoving = false; 328 329 pahaKirkle.Brain = tasoAivot2; 330 } 331 332 void LisaaElamaLaskuri() 333 { 334 elamaLaskuri = new DoubleMeter(5); 335 elamaLaskuri.MaxValue = 5; 336 //elamaLaskuri.LowerLimit += ElamaLoppui; 337 338 ProgressBar elamaPalkki = new ProgressBar(150, 30); 339 elamaPalkki.X = Screen.Left + 20; 340 elamaPalkki.Y = Screen.Top - 20; 341 elamaPalkki.Angle = Angle.RightAngle; 342 elamaPalkki.Color = Color.Black; 343 elamaPalkki.BarColor = Color.Red; 344 elamaPalkki.BindTo(elamaLaskuri); 345 Add(elamaPalkki,3); 346 } 347 348 void LisaaKolikkoLaskuri() 349 { 350 kolikkoLaskuri = new IntMeter(0); 351 352 Label kolikkoNaytto = new Label(); 353 kolikkoNaytto.Title = "Coin"; 354 //kolikkoNaytto.InFormatString = "Coin: {0:D2}"; 355 kolikkoNaytto.X = Screen.Right - 80; 356 kolikkoNaytto.Y = Screen.Top - 20; 357 kolikkoNaytto.TextColor = Color.White; 358 kolikkoNaytto.Color = Color.Transparent; 359 360 kolikkoNaytto.BindTo(kolikkoLaskuri); 361 Add(kolikkoNaytto); 362 } 363 230 364 void LisaaNappaimet() 231 365 { … … 264 398 } 265 399 400 void TormaaVihuun(PhysicsObject hahmo, PhysicsObject Vihu) 401 { 402 pelaaja1.Animation.FPS = 7; 403 pelaaja1.PlayAnimation(new Animation(kirkleKipu)); 404 } 405 266 406 void TormaaLaavaan(PhysicsObject hahmo, PhysicsObject laava) 267 407 { -
2012/kerho/AkiP/Kirkle/Kirkle/Kirkle.csproj
r3924 r3953 114 114 <Compile Include="Kirkle.cs" /> 115 115 <Compile Include="Properties\AssemblyInfo.cs" /> 116 <Compile Include="Vihu.cs" /> 116 117 </ItemGroup> 117 118 <ItemGroup> -
2012/kerho/AkiP/Kirkle/Kirkle/Kirkle.csproj.Debug.cachefile
r3950 r3953 7 7 Content\KirkleJump.xnb 8 8 Content\KirkleLanding.xnb 9 Content\kentta1.xnb10 Content\kentta2.xnb11 9 Content\Ruoho.xnb 12 10 Content\Maa.xnb … … 30 28 Content\EnemyLanding.xnb 31 29 Content\TiiliSininen.xnb 30 Content\kentta1.xnb 31 Content\kentta2.xnb 32 Content\Maa2.xnb 33 Content\Ruoho2.xnb 34 Content\PuuAla.xnb 35 Content\PuuKeski.xnb 36 Content\PuuYla.xnb 37 Content\KynttilanValo1.xnb 38 Content\KynttilanValo2.xnb 39 Content\Maali1.xnb 40 Content\Maali2.xnb 41 Content\Maali3.xnb 42 Content\KasviVihuKavely1.xnb 43 Content\KasviVihuKavely2.xnb 44 Content\KasviVihuKavely3.xnb 45 Content\PahaKirkleKavely1.xnb 46 Content\PahaKirkleKavely2.xnb 47 Content\PahaKirkleKavely3.xnb 48 Content\KirkleKipu1.xnb 49 Content\KirkleKipu2.xnb 50 Content\Laava1.xnb 51 Content\Laava10.xnb 52 Content\Laava2.xnb 53 Content\Laava3.xnb 54 Content\Laava4.xnb 55 Content\Laava5.xnb 56 Content\Laava6.xnb 57 Content\Laava7.xnb 58 Content\Laava8.xnb 59 Content\Laava9.xnb 60 Content\LaavaKeski1.xnb 61 Content\LaavaKeski10.xnb 62 Content\LaavaKeski2.xnb 63 Content\LaavaKeski3.xnb 64 Content\LaavaKeski4.xnb 65 Content\LaavaKeski5.xnb 66 Content\LaavaKeski6.xnb 67 Content\LaavaKeski7.xnb 68 Content\LaavaKeski8.xnb 69 Content\LaavaKeski9.xnb -
2012/kerho/AkiP/Kirkle/Kirkle/obj/x86/Debug/ContentPipeline-{9E728CB8-3C8D-4AD6-9A9C-AAF86C7E03CF}.xml
r3950 r3953 8 8 <Processor>SoundEffectProcessor</Processor> 9 9 <Options>None</Options> 10 <Output>C:\MyTemp\ohjelmointikerho\Aki n\Kirkle\Kirkle\bin\x86\Debug\Content\maali.xnb</Output>11 <Time>2013-0 3-23T10:12:06.9091281+02:00</Time>10 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\maali.xnb</Output> 11 <Time>2013-04-27T10:15:00.7391377+03:00</Time> 12 12 </Item> 13 13 <Item> … … 17 17 <Processor>TextureProcessor</Processor> 18 18 <Options>None</Options> 19 <Output>C:\MyTemp\ohjelmointikerho\Aki n\Kirkle\Kirkle\bin\x86\Debug\Content\norsu.xnb</Output>20 <Time>2013-0 3-23T10:12:06.9831355+02:00</Time>19 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\norsu.xnb</Output> 20 <Time>2013-04-27T10:15:00.9621377+03:00</Time> 21 21 </Item> 22 22 <Item> … … 26 26 <Processor>TextureProcessor</Processor> 27 27 <Options>None</Options> 28 <Output>C:\MyTemp\ohjelmointikerho\Aki n\Kirkle\Kirkle\bin\x86\Debug\Content\tahti.xnb</Output>29 <Time>2013-0 3-23T10:12:07.0291401+02:00</Time>28 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\tahti.xnb</Output> 29 <Time>2013-04-27T10:15:00.9661377+03:00</Time> 30 30 </Item> 31 31 <Item> … … 35 35 <Processor>TextureProcessor</Processor> 36 36 <Options>None</Options> 37 <Output>C:\MyTemp\ohjelmointikerho\Aki n\Kirkle\Kirkle\bin\x86\Debug\Content\KirkleIdle.xnb</Output>38 <Time>2013-0 3-23T10:12:06.9241296+02:00</Time>37 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KirkleIdle.xnb</Output> 38 <Time>2013-04-27T10:15:00.7911377+03:00</Time> 39 39 </Item> 40 40 <Item> … … 44 44 <Processor>TextureProcessor</Processor> 45 45 <Options>None</Options> 46 <Output>C:\MyTemp\ohjelmointikerho\Aki n\Kirkle\Kirkle\bin\x86\Debug\Content\KirkleWalking1.xnb</Output>47 <Time>2013-0 3-23T10:12:06.92813+02:00</Time>46 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KirkleWalking1.xnb</Output> 47 <Time>2013-04-27T10:15:00.7951377+03:00</Time> 48 48 </Item> 49 49 <Item> … … 53 53 <Processor>TextureProcessor</Processor> 54 54 <Options>None</Options> 55 <Output>C:\MyTemp\ohjelmointikerho\Aki n\Kirkle\Kirkle\bin\x86\Debug\Content\KirkleWalking2.xnb</Output>56 <Time>2013-0 3-23T10:12:06.9311303+02:00</Time>55 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KirkleWalking2.xnb</Output> 56 <Time>2013-04-27T10:15:00.8021377+03:00</Time> 57 57 </Item> 58 58 <Item> … … 62 62 <Processor>TextureProcessor</Processor> 63 63 <Options>None</Options> 64 <Output>C:\MyTemp\ohjelmointikerho\Aki n\Kirkle\Kirkle\bin\x86\Debug\Content\KirkleJump.xnb</Output>65 <Time>2013-0 3-23T10:12:06.9171289+02:00</Time>64 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KirkleJump.xnb</Output> 65 <Time>2013-04-27T10:15:00.9911377+03:00</Time> 66 66 </Item> 67 67 <Item> … … 71 71 <Processor>TextureProcessor</Processor> 72 72 <Options>None</Options> 73 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\KirkleLanding.xnb</Output> 74 <Time>2013-03-23T10:12:06.9211293+02:00</Time> 73 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KirkleLanding.xnb</Output> 74 <Time>2013-04-27T10:15:00.7871377+03:00</Time> 75 </Item> 76 <Item> 77 <Source>Ruoho.png</Source> 78 <Name>Ruoho</Name> 79 <Importer>TextureImporter</Importer> 80 <Processor>TextureProcessor</Processor> 81 <Options>None</Options> 82 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Ruoho.xnb</Output> 83 <Time>2013-04-27T10:15:00.9431377+03:00</Time> 84 </Item> 85 <Item> 86 <Source>Maa.png</Source> 87 <Name>Maa</Name> 88 <Importer>TextureImporter</Importer> 89 <Processor>TextureProcessor</Processor> 90 <Options>None</Options> 91 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Maa.xnb</Output> 92 <Time>2013-04-27T10:15:00.9511377+03:00</Time> 93 </Item> 94 <Item> 95 <Source>TiiliHarmaa.png</Source> 96 <Name>TiiliHarmaa</Name> 97 <Importer>TextureImporter</Importer> 98 <Processor>TextureProcessor</Processor> 99 <Options>None</Options> 100 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\TiiliHarmaa.xnb</Output> 101 <Time>2013-04-27T10:15:00.9981377+03:00</Time> 102 </Item> 103 <Item> 104 <Source>TiiliRuskea.png</Source> 105 <Name>TiiliRuskea</Name> 106 <Importer>TextureImporter</Importer> 107 <Processor>TextureProcessor</Processor> 108 <Options>None</Options> 109 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\TiiliRuskea.xnb</Output> 110 <Time>2013-04-27T10:15:01.0021377+03:00</Time> 111 </Item> 112 <Item> 113 <Source>Laava.png</Source> 114 <Name>Laava</Name> 115 <Importer>TextureImporter</Importer> 116 <Processor>TextureProcessor</Processor> 117 <Options>None</Options> 118 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava.xnb</Output> 119 <Time>2013-04-27T10:15:00.9951377+03:00</Time> 120 </Item> 121 <Item> 122 <Source>LaavaKeski.png</Source> 123 <Name>LaavaKeski</Name> 124 <Importer>TextureImporter</Importer> 125 <Processor>TextureProcessor</Processor> 126 <Options>None</Options> 127 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski.xnb</Output> 128 <Time>2013-04-27T10:15:00.7551377+03:00</Time> 129 </Item> 130 <Item> 131 <Source>Palikka.png</Source> 132 <Name>Palikka</Name> 133 <Importer>TextureImporter</Importer> 134 <Processor>TextureProcessor</Processor> 135 <Options>None</Options> 136 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Palikka.xnb</Output> 137 <Time>2013-04-27T10:15:00.7591377+03:00</Time> 138 </Item> 139 <Item> 140 <Source>Kytkin.png</Source> 141 <Name>Kytkin</Name> 142 <Importer>TextureImporter</Importer> 143 <Processor>TextureProcessor</Processor> 144 <Options>None</Options> 145 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Kytkin.xnb</Output> 146 <Time>2013-04-27T10:15:00.9701377+03:00</Time> 147 </Item> 148 <Item> 149 <Source>Kolikko.png</Source> 150 <Name>Kolikko</Name> 151 <Importer>TextureImporter</Importer> 152 <Processor>TextureProcessor</Processor> 153 <Options>None</Options> 154 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Kolikko.xnb</Output> 155 <Time>2013-04-27T10:15:00.9591377+03:00</Time> 156 </Item> 157 <Item> 158 <Source>1-KirkleIdle.png</Source> 159 <Name>1-KirkleIdle</Name> 160 <Importer>TextureImporter</Importer> 161 <Processor>TextureProcessor</Processor> 162 <Options>None</Options> 163 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\1-KirkleIdle.xnb</Output> 164 <Time>2013-04-27T10:15:00.7661377+03:00</Time> 165 </Item> 166 <Item> 167 <Source>1-KirkleWalking1.png</Source> 168 <Name>1-KirkleWalking1</Name> 169 <Importer>TextureImporter</Importer> 170 <Processor>TextureProcessor</Processor> 171 <Options>None</Options> 172 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\1-KirkleWalking1.xnb</Output> 173 <Time>2013-04-27T10:15:00.7691377+03:00</Time> 174 </Item> 175 <Item> 176 <Source>1-KirkleWalking2.png</Source> 177 <Name>1-KirkleWalking2</Name> 178 <Importer>TextureImporter</Importer> 179 <Processor>TextureProcessor</Processor> 180 <Options>None</Options> 181 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\1-KirkleWalking2.xnb</Output> 182 <Time>2013-04-27T10:15:00.7831377+03:00</Time> 183 </Item> 184 <Item> 185 <Source>SecretTiili.png</Source> 186 <Name>SecretTiili</Name> 187 <Importer>TextureImporter</Importer> 188 <Processor>TextureProcessor</Processor> 189 <Options>None</Options> 190 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\SecretTiili.xnb</Output> 191 <Time>2013-04-27T10:15:00.7981377+03:00</Time> 192 </Item> 193 <Item> 194 <Source>EnemyIdle.png</Source> 195 <Name>EnemyIdle</Name> 196 <Importer>TextureImporter</Importer> 197 <Processor>TextureProcessor</Processor> 198 <Options>None</Options> 199 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\EnemyIdle.xnb</Output> 200 <Time>2013-04-27T10:15:00.9801377+03:00</Time> 201 </Item> 202 <Item> 203 <Source>EnemyWalking1.png</Source> 204 <Name>EnemyWalking1</Name> 205 <Importer>TextureImporter</Importer> 206 <Processor>TextureProcessor</Processor> 207 <Options>None</Options> 208 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\EnemyWalking1.xnb</Output> 209 <Time>2013-04-27T10:15:00.9771377+03:00</Time> 210 </Item> 211 <Item> 212 <Source>EnemyWalking2.png</Source> 213 <Name>EnemyWalking2</Name> 214 <Importer>TextureImporter</Importer> 215 <Processor>TextureProcessor</Processor> 216 <Options>None</Options> 217 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\EnemyWalking2.xnb</Output> 218 <Time>2013-04-27T10:15:00.9881377+03:00</Time> 219 </Item> 220 <Item> 221 <Source>1-KirkleJump.png</Source> 222 <Name>1-KirkleJump</Name> 223 <Importer>TextureImporter</Importer> 224 <Processor>TextureProcessor</Processor> 225 <Options>None</Options> 226 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\1-KirkleJump.xnb</Output> 227 <Time>2013-04-27T10:15:00.9841377+03:00</Time> 228 </Item> 229 <Item> 230 <Source>1-KirkleLanding.png</Source> 231 <Name>1-KirkleLanding</Name> 232 <Importer>TextureImporter</Importer> 233 <Processor>TextureProcessor</Processor> 234 <Options>None</Options> 235 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\1-KirkleLanding.xnb</Output> 236 <Time>2013-04-27T10:15:00.7621377+03:00</Time> 237 </Item> 238 <Item> 239 <Source>EnemyJump.png</Source> 240 <Name>EnemyJump</Name> 241 <Importer>TextureImporter</Importer> 242 <Processor>TextureProcessor</Processor> 243 <Options>None</Options> 244 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\EnemyJump.xnb</Output> 245 <Time>2013-04-27T10:15:00.7511377+03:00</Time> 246 </Item> 247 <Item> 248 <Source>EnemyLanding.png</Source> 249 <Name>EnemyLanding</Name> 250 <Importer>TextureImporter</Importer> 251 <Processor>TextureProcessor</Processor> 252 <Options>None</Options> 253 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\EnemyLanding.xnb</Output> 254 <Time>2013-04-27T10:15:00.9731377+03:00</Time> 255 </Item> 256 <Item> 257 <Source>TiiliSininen.png</Source> 258 <Name>TiiliSininen</Name> 259 <Importer>TextureImporter</Importer> 260 <Processor>TextureProcessor</Processor> 261 <Options>None</Options> 262 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\TiiliSininen.xnb</Output> 263 <Time>2013-04-27T10:15:00.9551377+03:00</Time> 75 264 </Item> 76 265 <Item> … … 80 269 <Processor>TextFileContentProcessor</Processor> 81 270 <Options>None</Options> 82 <Output>C:\MyTemp\ohjelmointikerho\Aki n\Kirkle\Kirkle\bin\x86\Debug\Content\kentta1.xnb</Output>83 <Time>2013-0 3-23T15:59:50.3160042+02:00</Time>271 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\kentta1.xnb</Output> 272 <Time>2013-04-27T15:36:41.8781156+03:00</Time> 84 273 </Item> 85 274 <Item> … … 89 278 <Processor>TextFileContentProcessor</Processor> 90 279 <Options>None</Options> 91 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\kentta2.xnb</Output> 92 <Time>2013-03-23T14:58:04.0397213+02:00</Time> 93 </Item> 94 <Item> 95 <Source>Ruoho.png</Source> 96 <Name>Ruoho</Name> 97 <Importer>TextureImporter</Importer> 98 <Processor>TextureProcessor</Processor> 99 <Options>None</Options> 100 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\Ruoho.xnb</Output> 101 <Time>2013-03-23T12:56:50.3884289+02:00</Time> 102 </Item> 103 <Item> 104 <Source>Maa.png</Source> 105 <Name>Maa</Name> 106 <Importer>TextureImporter</Importer> 107 <Processor>TextureProcessor</Processor> 108 <Options>None</Options> 109 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\Maa.xnb</Output> 110 <Time>2013-03-23T12:53:25.6379559+02:00</Time> 111 </Item> 112 <Item> 113 <Source>TiiliHarmaa.png</Source> 114 <Name>TiiliHarmaa</Name> 115 <Importer>TextureImporter</Importer> 116 <Processor>TextureProcessor</Processor> 117 <Options>None</Options> 118 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\TiiliHarmaa.xnb</Output> 119 <Time>2013-03-23T12:59:45.2099093+02:00</Time> 120 </Item> 121 <Item> 122 <Source>TiiliRuskea.png</Source> 123 <Name>TiiliRuskea</Name> 124 <Importer>TextureImporter</Importer> 125 <Processor>TextureProcessor</Processor> 126 <Options>None</Options> 127 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\TiiliRuskea.xnb</Output> 128 <Time>2013-03-23T13:01:17.9741848+02:00</Time> 129 </Item> 130 <Item> 131 <Source>Laava.png</Source> 132 <Name>Laava</Name> 133 <Importer>TextureImporter</Importer> 134 <Processor>TextureProcessor</Processor> 135 <Options>None</Options> 136 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\Laava.xnb</Output> 137 <Time>2013-03-23T13:13:46.6570456+02:00</Time> 138 </Item> 139 <Item> 140 <Source>LaavaKeski.png</Source> 141 <Name>LaavaKeski</Name> 142 <Importer>TextureImporter</Importer> 143 <Processor>TextureProcessor</Processor> 144 <Options>None</Options> 145 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski.xnb</Output> 146 <Time>2013-03-23T13:14:50.2023995+02:00</Time> 147 </Item> 148 <Item> 149 <Source>Palikka.png</Source> 150 <Name>Palikka</Name> 151 <Importer>TextureImporter</Importer> 152 <Processor>TextureProcessor</Processor> 153 <Options>None</Options> 154 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\Palikka.xnb</Output> 155 <Time>2013-03-23T13:32:22.0885776+02:00</Time> 156 </Item> 157 <Item> 158 <Source>Kytkin.png</Source> 159 <Name>Kytkin</Name> 160 <Importer>TextureImporter</Importer> 161 <Processor>TextureProcessor</Processor> 162 <Options>None</Options> 163 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\Kytkin.xnb</Output> 164 <Time>2013-03-23T14:02:59.426293+02:00</Time> 165 </Item> 166 <Item> 167 <Source>Kolikko.png</Source> 168 <Name>Kolikko</Name> 169 <Importer>TextureImporter</Importer> 170 <Processor>TextureProcessor</Processor> 171 <Options>None</Options> 172 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\Kolikko.xnb</Output> 173 <Time>2013-03-23T14:15:46.4769904+02:00</Time> 174 </Item> 175 <Item> 176 <Source>1-KirkleIdle.png</Source> 177 <Name>1-KirkleIdle</Name> 178 <Importer>TextureImporter</Importer> 179 <Processor>TextureProcessor</Processor> 180 <Options>None</Options> 181 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\1-KirkleIdle.xnb</Output> 182 <Time>2013-03-23T14:20:35.0738472+02:00</Time> 183 </Item> 184 <Item> 185 <Source>1-KirkleWalking1.png</Source> 186 <Name>1-KirkleWalking1</Name> 187 <Importer>TextureImporter</Importer> 188 <Processor>TextureProcessor</Processor> 189 <Options>None</Options> 190 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\1-KirkleWalking1.xnb</Output> 191 <Time>2013-03-23T14:26:30.5423905+02:00</Time> 192 </Item> 193 <Item> 194 <Source>1-KirkleWalking2.png</Source> 195 <Name>1-KirkleWalking2</Name> 196 <Importer>TextureImporter</Importer> 197 <Processor>TextureProcessor</Processor> 198 <Options>None</Options> 199 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\1-KirkleWalking2.xnb</Output> 200 <Time>2013-03-23T14:28:04.4897843+02:00</Time> 201 </Item> 202 <Item> 203 <Source>SecretTiili.png</Source> 204 <Name>SecretTiili</Name> 205 <Importer>TextureImporter</Importer> 206 <Processor>TextureProcessor</Processor> 207 <Options>None</Options> 208 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\SecretTiili.xnb</Output> 209 <Time>2013-03-23T14:37:23.4986796+02:00</Time> 210 </Item> 211 <Item> 212 <Source>EnemyIdle.png</Source> 213 <Name>EnemyIdle</Name> 214 <Importer>TextureImporter</Importer> 215 <Processor>TextureProcessor</Processor> 216 <Options>None</Options> 217 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\EnemyIdle.xnb</Output> 218 <Time>2013-03-23T15:04:08.2391376+02:00</Time> 219 </Item> 220 <Item> 221 <Source>EnemyWalking1.png</Source> 222 <Name>EnemyWalking1</Name> 223 <Importer>TextureImporter</Importer> 224 <Processor>TextureProcessor</Processor> 225 <Options>None</Options> 226 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\EnemyWalking1.xnb</Output> 227 <Time>2013-03-23T15:05:27.9701099+02:00</Time> 228 </Item> 229 <Item> 230 <Source>EnemyWalking2.png</Source> 231 <Name>EnemyWalking2</Name> 232 <Importer>TextureImporter</Importer> 233 <Processor>TextureProcessor</Processor> 234 <Options>None</Options> 235 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\EnemyWalking2.xnb</Output> 236 <Time>2013-03-23T15:06:29.8052928+02:00</Time> 237 </Item> 238 <Item> 239 <Source>1-KirkleJump.png</Source> 240 <Name>1-KirkleJump</Name> 241 <Importer>TextureImporter</Importer> 242 <Processor>TextureProcessor</Processor> 243 <Options>None</Options> 244 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\1-KirkleJump.xnb</Output> 245 <Time>2013-03-23T15:09:45.8428946+02:00</Time> 246 </Item> 247 <Item> 248 <Source>1-KirkleLanding.png</Source> 249 <Name>1-KirkleLanding</Name> 250 <Importer>TextureImporter</Importer> 251 <Processor>TextureProcessor</Processor> 252 <Options>None</Options> 253 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\1-KirkleLanding.xnb</Output> 254 <Time>2013-03-23T15:11:19.0072101+02:00</Time> 255 </Item> 256 <Item> 257 <Source>EnemyJump.png</Source> 258 <Name>EnemyJump</Name> 259 <Importer>TextureImporter</Importer> 260 <Processor>TextureProcessor</Processor> 261 <Options>None</Options> 262 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\EnemyJump.xnb</Output> 263 <Time>2013-03-23T15:44:51.4794372+02:00</Time> 264 </Item> 265 <Item> 266 <Source>EnemyLanding.png</Source> 267 <Name>EnemyLanding</Name> 268 <Importer>TextureImporter</Importer> 269 <Processor>TextureProcessor</Processor> 270 <Options>None</Options> 271 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\EnemyLanding.xnb</Output> 272 <Time>2013-03-23T15:46:45.0590589+02:00</Time> 273 </Item> 274 <Item> 275 <Source>TiiliSininen.png</Source> 276 <Name>TiiliSininen</Name> 277 <Importer>TextureImporter</Importer> 278 <Processor>TextureProcessor</Processor> 279 <Options>None</Options> 280 <Output>C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\TiiliSininen.xnb</Output> 281 <Time>2013-03-23T15:48:23.0505042+02:00</Time> 280 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\kentta2.xnb</Output> 281 <Time>2013-04-27T15:41:41.1071156+03:00</Time> 282 </Item> 283 <Item> 284 <Source>Maa2.png</Source> 285 <Name>Maa2</Name> 286 <Importer>TextureImporter</Importer> 287 <Processor>TextureProcessor</Processor> 288 <Options>None</Options> 289 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Maa2.xnb</Output> 290 <Time>2013-04-27T10:39:07.3461377+03:00</Time> 291 </Item> 292 <Item> 293 <Source>Ruoho2.png</Source> 294 <Name>Ruoho2</Name> 295 <Importer>TextureImporter</Importer> 296 <Processor>TextureProcessor</Processor> 297 <Options>None</Options> 298 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Ruoho2.xnb</Output> 299 <Time>2013-04-27T10:37:30.2551377+03:00</Time> 300 </Item> 301 <Item> 302 <Source>PuuAla.png</Source> 303 <Name>PuuAla</Name> 304 <Importer>TextureImporter</Importer> 305 <Processor>TextureProcessor</Processor> 306 <Options>None</Options> 307 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\PuuAla.xnb</Output> 308 <Time>2013-04-27T11:00:29.0693104+03:00</Time> 309 </Item> 310 <Item> 311 <Source>PuuKeski.png</Source> 312 <Name>PuuKeski</Name> 313 <Importer>TextureImporter</Importer> 314 <Processor>TextureProcessor</Processor> 315 <Options>None</Options> 316 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\PuuKeski.xnb</Output> 317 <Time>2013-04-27T11:05:01.9771362+03:00</Time> 318 </Item> 319 <Item> 320 <Source>PuuYla.png</Source> 321 <Name>PuuYla</Name> 322 <Importer>TextureImporter</Importer> 323 <Processor>TextureProcessor</Processor> 324 <Options>None</Options> 325 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\PuuYla.xnb</Output> 326 <Time>2013-04-27T11:04:32.2931681+03:00</Time> 327 </Item> 328 <Item> 329 <Source>KynttilanValo1.png</Source> 330 <Name>KynttilanValo1</Name> 331 <Importer>TextureImporter</Importer> 332 <Processor>TextureProcessor</Processor> 333 <Options>None</Options> 334 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KynttilanValo1.xnb</Output> 335 <Time>2013-04-27T11:22:20.6841156+03:00</Time> 336 </Item> 337 <Item> 338 <Source>KynttilanValo2.png</Source> 339 <Name>KynttilanValo2</Name> 340 <Importer>TextureImporter</Importer> 341 <Processor>TextureProcessor</Processor> 342 <Options>None</Options> 343 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KynttilanValo2.xnb</Output> 344 <Time>2013-04-27T11:24:09.0191156+03:00</Time> 345 </Item> 346 <Item> 347 <Source>Maali1.png</Source> 348 <Name>Maali1</Name> 349 <Importer>TextureImporter</Importer> 350 <Processor>TextureProcessor</Processor> 351 <Options>None</Options> 352 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Maali1.xnb</Output> 353 <Time>2013-04-27T11:28:20.3071156+03:00</Time> 354 </Item> 355 <Item> 356 <Source>Maali2.png</Source> 357 <Name>Maali2</Name> 358 <Importer>TextureImporter</Importer> 359 <Processor>TextureProcessor</Processor> 360 <Options>None</Options> 361 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Maali2.xnb</Output> 362 <Time>2013-04-27T11:29:29.2701156+03:00</Time> 363 </Item> 364 <Item> 365 <Source>Maali3.png</Source> 366 <Name>Maali3</Name> 367 <Importer>TextureImporter</Importer> 368 <Processor>TextureProcessor</Processor> 369 <Options>None</Options> 370 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Maali3.xnb</Output> 371 <Time>2013-04-27T11:30:29.1311156+03:00</Time> 372 </Item> 373 <Item> 374 <Source>KasviVihuKavely1.png</Source> 375 <Name>KasviVihuKavely1</Name> 376 <Importer>TextureImporter</Importer> 377 <Processor>TextureProcessor</Processor> 378 <Options>None</Options> 379 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KasviVihuKavely1.xnb</Output> 380 <Time>2013-04-27T13:13:34.8831156+03:00</Time> 381 </Item> 382 <Item> 383 <Source>KasviVihuKavely2.png</Source> 384 <Name>KasviVihuKavely2</Name> 385 <Importer>TextureImporter</Importer> 386 <Processor>TextureProcessor</Processor> 387 <Options>None</Options> 388 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KasviVihuKavely2.xnb</Output> 389 <Time>2013-04-27T13:15:23.0971156+03:00</Time> 390 </Item> 391 <Item> 392 <Source>KasviVihuKavely3.png</Source> 393 <Name>KasviVihuKavely3</Name> 394 <Importer>TextureImporter</Importer> 395 <Processor>TextureProcessor</Processor> 396 <Options>None</Options> 397 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KasviVihuKavely3.xnb</Output> 398 <Time>2013-04-27T13:16:33.0391156+03:00</Time> 399 </Item> 400 <Item> 401 <Source>PahaKirkleKavely1.png</Source> 402 <Name>PahaKirkleKavely1</Name> 403 <Importer>TextureImporter</Importer> 404 <Processor>TextureProcessor</Processor> 405 <Options>None</Options> 406 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\PahaKirkleKavely1.xnb</Output> 407 <Time>2013-04-27T14:14:42.2741156+03:00</Time> 408 </Item> 409 <Item> 410 <Source>PahaKirkleKavely2.png</Source> 411 <Name>PahaKirkleKavely2</Name> 412 <Importer>TextureImporter</Importer> 413 <Processor>TextureProcessor</Processor> 414 <Options>None</Options> 415 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\PahaKirkleKavely2.xnb</Output> 416 <Time>2013-04-27T14:16:04.9651156+03:00</Time> 417 </Item> 418 <Item> 419 <Source>PahaKirkleKavely3.png</Source> 420 <Name>PahaKirkleKavely3</Name> 421 <Importer>TextureImporter</Importer> 422 <Processor>TextureProcessor</Processor> 423 <Options>None</Options> 424 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\PahaKirkleKavely3.xnb</Output> 425 <Time>2013-04-27T14:17:10.2721156+03:00</Time> 426 </Item> 427 <Item> 428 <Source>KirkleKipu1.png</Source> 429 <Name>KirkleKipu1</Name> 430 <Importer>TextureImporter</Importer> 431 <Processor>TextureProcessor</Processor> 432 <Options>None</Options> 433 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KirkleKipu1.xnb</Output> 434 <Time>2013-04-27T14:28:17.4201156+03:00</Time> 435 </Item> 436 <Item> 437 <Source>KirkleKipu2.png</Source> 438 <Name>KirkleKipu2</Name> 439 <Importer>TextureImporter</Importer> 440 <Processor>TextureProcessor</Processor> 441 <Options>None</Options> 442 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KirkleKipu2.xnb</Output> 443 <Time>2013-04-27T14:29:32.0551156+03:00</Time> 444 </Item> 445 <Item> 446 <Source>Laava1.png</Source> 447 <Name>Laava1</Name> 448 <Importer>TextureImporter</Importer> 449 <Processor>TextureProcessor</Processor> 450 <Options>None</Options> 451 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava1.xnb</Output> 452 <Time>2013-04-27T15:14:12.6991156+03:00</Time> 453 </Item> 454 <Item> 455 <Source>Laava10.png</Source> 456 <Name>Laava10</Name> 457 <Importer>TextureImporter</Importer> 458 <Processor>TextureProcessor</Processor> 459 <Options>None</Options> 460 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava10.xnb</Output> 461 <Time>2013-04-27T15:21:25.3601156+03:00</Time> 462 </Item> 463 <Item> 464 <Source>Laava2.png</Source> 465 <Name>Laava2</Name> 466 <Importer>TextureImporter</Importer> 467 <Processor>TextureProcessor</Processor> 468 <Options>None</Options> 469 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava2.xnb</Output> 470 <Time>2013-04-27T15:15:13.0311156+03:00</Time> 471 </Item> 472 <Item> 473 <Source>Laava3.png</Source> 474 <Name>Laava3</Name> 475 <Importer>TextureImporter</Importer> 476 <Processor>TextureProcessor</Processor> 477 <Options>None</Options> 478 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava3.xnb</Output> 479 <Time>2013-04-27T15:16:25.9791156+03:00</Time> 480 </Item> 481 <Item> 482 <Source>Laava4.png</Source> 483 <Name>Laava4</Name> 484 <Importer>TextureImporter</Importer> 485 <Processor>TextureProcessor</Processor> 486 <Options>None</Options> 487 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava4.xnb</Output> 488 <Time>2013-04-27T15:17:08.8161156+03:00</Time> 489 </Item> 490 <Item> 491 <Source>Laava5.png</Source> 492 <Name>Laava5</Name> 493 <Importer>TextureImporter</Importer> 494 <Processor>TextureProcessor</Processor> 495 <Options>None</Options> 496 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava5.xnb</Output> 497 <Time>2013-04-27T15:17:51.8541156+03:00</Time> 498 </Item> 499 <Item> 500 <Source>Laava6.png</Source> 501 <Name>Laava6</Name> 502 <Importer>TextureImporter</Importer> 503 <Processor>TextureProcessor</Processor> 504 <Options>None</Options> 505 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava6.xnb</Output> 506 <Time>2013-04-27T15:18:39.6431156+03:00</Time> 507 </Item> 508 <Item> 509 <Source>Laava7.png</Source> 510 <Name>Laava7</Name> 511 <Importer>TextureImporter</Importer> 512 <Processor>TextureProcessor</Processor> 513 <Options>None</Options> 514 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava7.xnb</Output> 515 <Time>2013-04-27T15:19:21.2551156+03:00</Time> 516 </Item> 517 <Item> 518 <Source>Laava8.png</Source> 519 <Name>Laava8</Name> 520 <Importer>TextureImporter</Importer> 521 <Processor>TextureProcessor</Processor> 522 <Options>None</Options> 523 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava8.xnb</Output> 524 <Time>2013-04-27T15:20:08.8291156+03:00</Time> 525 </Item> 526 <Item> 527 <Source>Laava9.png</Source> 528 <Name>Laava9</Name> 529 <Importer>TextureImporter</Importer> 530 <Processor>TextureProcessor</Processor> 531 <Options>None</Options> 532 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava9.xnb</Output> 533 <Time>2013-04-27T15:20:47.9771156+03:00</Time> 534 </Item> 535 <Item> 536 <Source>LaavaKeski1.png</Source> 537 <Name>LaavaKeski1</Name> 538 <Importer>TextureImporter</Importer> 539 <Processor>TextureProcessor</Processor> 540 <Options>None</Options> 541 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski1.xnb</Output> 542 <Time>2013-04-27T15:22:09.3651156+03:00</Time> 543 </Item> 544 <Item> 545 <Source>LaavaKeski10.png</Source> 546 <Name>LaavaKeski10</Name> 547 <Importer>TextureImporter</Importer> 548 <Processor>TextureProcessor</Processor> 549 <Options>None</Options> 550 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski10.xnb</Output> 551 <Time>2013-04-27T15:27:07.5231156+03:00</Time> 552 </Item> 553 <Item> 554 <Source>LaavaKeski2.png</Source> 555 <Name>LaavaKeski2</Name> 556 <Importer>TextureImporter</Importer> 557 <Processor>TextureProcessor</Processor> 558 <Options>None</Options> 559 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski2.xnb</Output> 560 <Time>2013-04-27T15:22:43.2511156+03:00</Time> 561 </Item> 562 <Item> 563 <Source>LaavaKeski3.png</Source> 564 <Name>LaavaKeski3</Name> 565 <Importer>TextureImporter</Importer> 566 <Processor>TextureProcessor</Processor> 567 <Options>None</Options> 568 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski3.xnb</Output> 569 <Time>2013-04-27T15:23:17.7131156+03:00</Time> 570 </Item> 571 <Item> 572 <Source>LaavaKeski4.png</Source> 573 <Name>LaavaKeski4</Name> 574 <Importer>TextureImporter</Importer> 575 <Processor>TextureProcessor</Processor> 576 <Options>None</Options> 577 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski4.xnb</Output> 578 <Time>2013-04-27T15:23:49.8791156+03:00</Time> 579 </Item> 580 <Item> 581 <Source>LaavaKeski5.png</Source> 582 <Name>LaavaKeski5</Name> 583 <Importer>TextureImporter</Importer> 584 <Processor>TextureProcessor</Processor> 585 <Options>None</Options> 586 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski5.xnb</Output> 587 <Time>2013-04-27T15:24:24.8691156+03:00</Time> 588 </Item> 589 <Item> 590 <Source>LaavaKeski6.png</Source> 591 <Name>LaavaKeski6</Name> 592 <Importer>TextureImporter</Importer> 593 <Processor>TextureProcessor</Processor> 594 <Options>None</Options> 595 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski6.xnb</Output> 596 <Time>2013-04-27T15:24:58.5461156+03:00</Time> 597 </Item> 598 <Item> 599 <Source>LaavaKeski7.png</Source> 600 <Name>LaavaKeski7</Name> 601 <Importer>TextureImporter</Importer> 602 <Processor>TextureProcessor</Processor> 603 <Options>None</Options> 604 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski7.xnb</Output> 605 <Time>2013-04-27T15:25:25.5461156+03:00</Time> 606 </Item> 607 <Item> 608 <Source>LaavaKeski8.png</Source> 609 <Name>LaavaKeski8</Name> 610 <Importer>TextureImporter</Importer> 611 <Processor>TextureProcessor</Processor> 612 <Options>None</Options> 613 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski8.xnb</Output> 614 <Time>2013-04-27T15:26:01.6231156+03:00</Time> 615 </Item> 616 <Item> 617 <Source>LaavaKeski9.png</Source> 618 <Name>LaavaKeski9</Name> 619 <Importer>TextureImporter</Importer> 620 <Processor>TextureProcessor</Processor> 621 <Options>None</Options> 622 <Output>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski9.xnb</Output> 623 <Time>2013-04-27T15:26:33.0771156+03:00</Time> 282 624 </Item> 283 625 <BuildSuccessful>true</BuildSuccessful> … … 288 630 <BuildConfiguration>Debug</BuildConfiguration> 289 631 <CompressContent>false</CompressContent> 290 <RootDirectory>C:\MyTemp\ohjelmointikerho\Aki n\Kirkle\KirkleContent\</RootDirectory>291 <LoggerRootDirectory>C:\MyTemp\ohjelmointikerho\Aki n\Kirkle\Kirkle\</LoggerRootDirectory>292 <IntermediateDirectory>C:\MyTemp\ohjelmointikerho\Aki n\Kirkle\Kirkle\obj\x86\Debug\</IntermediateDirectory>293 <OutputDirectory>C:\MyTemp\ohjelmointikerho\Aki n\Kirkle\Kirkle\bin\x86\Debug\Content\</OutputDirectory>632 <RootDirectory>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\KirkleContent\</RootDirectory> 633 <LoggerRootDirectory>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\</LoggerRootDirectory> 634 <IntermediateDirectory>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\obj\x86\Debug\</IntermediateDirectory> 635 <OutputDirectory>C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\</OutputDirectory> 294 636 </Settings> 295 637 <Assemblies> … … 328 670 <Assembly> 329 671 <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> 330 <Value>2012-03-16T14:33: 25.4069086+02:00</Value>672 <Value>2012-03-16T14:33:33.6603905+02:00</Value> 331 673 </Assembly> 332 674 </Assemblies> -
2012/kerho/AkiP/Kirkle/Kirkle/obj/x86/Debug/Kirkle.csproj.FileListAbsolute.txt
r3950 r3953 56 56 C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\EnemyLanding.xnb 57 57 C:\MyTemp\ohjelmointikerho\Akin\Kirkle\Kirkle\bin\x86\Debug\Content\TiiliSininen.xnb 58 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\maali.xnb 59 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\norsu.xnb 60 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\tahti.xnb 61 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KirkleIdle.xnb 62 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KirkleWalking1.xnb 63 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KirkleWalking2.xnb 64 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KirkleJump.xnb 65 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KirkleLanding.xnb 66 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Ruoho.xnb 67 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Maa.xnb 68 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\TiiliHarmaa.xnb 69 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\TiiliRuskea.xnb 70 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava.xnb 71 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski.xnb 72 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Palikka.xnb 73 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Kytkin.xnb 74 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Kolikko.xnb 75 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\1-KirkleIdle.xnb 76 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\1-KirkleWalking1.xnb 77 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\1-KirkleWalking2.xnb 78 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\SecretTiili.xnb 79 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\EnemyIdle.xnb 80 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\EnemyWalking1.xnb 81 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\EnemyWalking2.xnb 82 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\1-KirkleJump.xnb 83 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\1-KirkleLanding.xnb 84 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\EnemyJump.xnb 85 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\EnemyLanding.xnb 86 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\TiiliSininen.xnb 87 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\kentta1.xnb 88 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\kentta2.xnb 89 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Kirkle.exe 90 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Kirkle.pdb 91 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Jypeli.dll 92 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Jypeli.xml 93 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\obj\x86\Debug\ResolveAssemblyReference.cache 94 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\obj\x86\Debug\Microsoft.Xna.Framework.RuntimeProfile.txt 95 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\obj\x86\Debug\Kirkle.exe 96 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\obj\x86\Debug\Kirkle.pdb 97 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Maa2.xnb 98 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Ruoho2.xnb 99 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\PuuAla.xnb 100 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\PuuKeski.xnb 101 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\PuuYla.xnb 102 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KynttilanValo1.xnb 103 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KynttilanValo2.xnb 104 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Maali1.xnb 105 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Maali2.xnb 106 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Maali3.xnb 107 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KasviVihuKavely1.xnb 108 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KasviVihuKavely2.xnb 109 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KasviVihuKavely3.xnb 110 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\PahaKirkleKavely1.xnb 111 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\PahaKirkleKavely2.xnb 112 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\PahaKirkleKavely3.xnb 113 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KirkleKipu1.xnb 114 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\KirkleKipu2.xnb 115 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava1.xnb 116 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava10.xnb 117 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava2.xnb 118 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava3.xnb 119 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava4.xnb 120 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava5.xnb 121 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava6.xnb 122 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava7.xnb 123 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava8.xnb 124 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\Laava9.xnb 125 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski1.xnb 126 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski10.xnb 127 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski2.xnb 128 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski3.xnb 129 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski4.xnb 130 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski5.xnb 131 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski6.xnb 132 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski7.xnb 133 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski8.xnb 134 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\Kirkle\bin\x86\Debug\Content\LaavaKeski9.xnb -
2012/kerho/AkiP/Kirkle/Kirkle/obj/x86/Debug/cachefile-{9E728CB8-3C8D-4AD6-9A9C-AAF86C7E03CF}-targetpath.txt
r3950 r3953 7 7 Content\KirkleJump.xnb 8 8 Content\KirkleLanding.xnb 9 Content\kentta1.xnb10 Content\kentta2.xnb11 9 Content\Ruoho.xnb 12 10 Content\Maa.xnb … … 30 28 Content\EnemyLanding.xnb 31 29 Content\TiiliSininen.xnb 30 Content\kentta1.xnb 31 Content\kentta2.xnb 32 Content\Maa2.xnb 33 Content\Ruoho2.xnb 34 Content\PuuAla.xnb 35 Content\PuuKeski.xnb 36 Content\PuuYla.xnb 37 Content\KynttilanValo1.xnb 38 Content\KynttilanValo2.xnb 39 Content\Maali1.xnb 40 Content\Maali2.xnb 41 Content\Maali3.xnb 42 Content\KasviVihuKavely1.xnb 43 Content\KasviVihuKavely2.xnb 44 Content\KasviVihuKavely3.xnb 45 Content\PahaKirkleKavely1.xnb 46 Content\PahaKirkleKavely2.xnb 47 Content\PahaKirkleKavely3.xnb 48 Content\KirkleKipu1.xnb 49 Content\KirkleKipu2.xnb 50 Content\Laava1.xnb 51 Content\Laava10.xnb 52 Content\Laava2.xnb 53 Content\Laava3.xnb 54 Content\Laava4.xnb 55 Content\Laava5.xnb 56 Content\Laava6.xnb 57 Content\Laava7.xnb 58 Content\Laava8.xnb 59 Content\Laava9.xnb 60 Content\LaavaKeski1.xnb 61 Content\LaavaKeski10.xnb 62 Content\LaavaKeski2.xnb 63 Content\LaavaKeski3.xnb 64 Content\LaavaKeski4.xnb 65 Content\LaavaKeski5.xnb 66 Content\LaavaKeski6.xnb 67 Content\LaavaKeski7.xnb 68 Content\LaavaKeski8.xnb 69 Content\LaavaKeski9.xnb -
2012/kerho/AkiP/Kirkle/KirkleContent/KirkleContent.contentproj
r3950 r3953 238 238 </Compile> 239 239 </ItemGroup> 240 <ItemGroup> 241 <Compile Include="Maa2.png"> 242 <Name>Maa2</Name> 243 <Importer>TextureImporter</Importer> 244 <Processor>TextureProcessor</Processor> 245 </Compile> 246 <Compile Include="Ruoho2.png"> 247 <Name>Ruoho2</Name> 248 <Importer>TextureImporter</Importer> 249 <Processor>TextureProcessor</Processor> 250 </Compile> 251 </ItemGroup> 252 <ItemGroup> 253 <Compile Include="PuuAla.png"> 254 <Name>PuuAla</Name> 255 <Importer>TextureImporter</Importer> 256 <Processor>TextureProcessor</Processor> 257 </Compile> 258 <Compile Include="PuuKeski.png"> 259 <Name>PuuKeski</Name> 260 <Importer>TextureImporter</Importer> 261 <Processor>TextureProcessor</Processor> 262 </Compile> 263 <Compile Include="PuuYla.png"> 264 <Name>PuuYla</Name> 265 <Importer>TextureImporter</Importer> 266 <Processor>TextureProcessor</Processor> 267 </Compile> 268 </ItemGroup> 269 <ItemGroup> 270 <Compile Include="KynttilanValo1.png"> 271 <Name>KynttilanValo1</Name> 272 <Importer>TextureImporter</Importer> 273 <Processor>TextureProcessor</Processor> 274 </Compile> 275 <Compile Include="KynttilanValo2.png"> 276 <Name>KynttilanValo2</Name> 277 <Importer>TextureImporter</Importer> 278 <Processor>TextureProcessor</Processor> 279 </Compile> 280 </ItemGroup> 281 <ItemGroup> 282 <Compile Include="Maali1.png"> 283 <Name>Maali1</Name> 284 <Importer>TextureImporter</Importer> 285 <Processor>TextureProcessor</Processor> 286 </Compile> 287 <Compile Include="Maali2.png"> 288 <Name>Maali2</Name> 289 <Importer>TextureImporter</Importer> 290 <Processor>TextureProcessor</Processor> 291 </Compile> 292 <Compile Include="Maali3.png"> 293 <Name>Maali3</Name> 294 <Importer>TextureImporter</Importer> 295 <Processor>TextureProcessor</Processor> 296 </Compile> 297 </ItemGroup> 298 <ItemGroup> 299 <Compile Include="KasviVihuKavely1.png"> 300 <Name>KasviVihuKavely1</Name> 301 <Importer>TextureImporter</Importer> 302 <Processor>TextureProcessor</Processor> 303 </Compile> 304 <Compile Include="KasviVihuKavely2.png"> 305 <Name>KasviVihuKavely2</Name> 306 <Importer>TextureImporter</Importer> 307 <Processor>TextureProcessor</Processor> 308 </Compile> 309 <Compile Include="KasviVihuKavely3.png"> 310 <Name>KasviVihuKavely3</Name> 311 <Importer>TextureImporter</Importer> 312 <Processor>TextureProcessor</Processor> 313 </Compile> 314 </ItemGroup> 315 <ItemGroup> 316 <Compile Include="PahaKirkleKavely1.png"> 317 <Name>PahaKirkleKavely1</Name> 318 <Importer>TextureImporter</Importer> 319 <Processor>TextureProcessor</Processor> 320 </Compile> 321 <Compile Include="PahaKirkleKavely2.png"> 322 <Name>PahaKirkleKavely2</Name> 323 <Importer>TextureImporter</Importer> 324 <Processor>TextureProcessor</Processor> 325 </Compile> 326 <Compile Include="PahaKirkleKavely3.png"> 327 <Name>PahaKirkleKavely3</Name> 328 <Importer>TextureImporter</Importer> 329 <Processor>TextureProcessor</Processor> 330 </Compile> 331 </ItemGroup> 332 <ItemGroup> 333 <Compile Include="KirkleKipu1.png"> 334 <Name>KirkleKipu1</Name> 335 <Importer>TextureImporter</Importer> 336 <Processor>TextureProcessor</Processor> 337 </Compile> 338 <Compile Include="KirkleKipu2.png"> 339 <Name>KirkleKipu2</Name> 340 <Importer>TextureImporter</Importer> 341 <Processor>TextureProcessor</Processor> 342 </Compile> 343 </ItemGroup> 344 <ItemGroup> 345 <Compile Include="Laava1.png"> 346 <Name>Laava1</Name> 347 <Importer>TextureImporter</Importer> 348 <Processor>TextureProcessor</Processor> 349 </Compile> 350 <Compile Include="Laava10.png"> 351 <Name>Laava10</Name> 352 <Importer>TextureImporter</Importer> 353 <Processor>TextureProcessor</Processor> 354 </Compile> 355 <Compile Include="Laava2.png"> 356 <Name>Laava2</Name> 357 <Importer>TextureImporter</Importer> 358 <Processor>TextureProcessor</Processor> 359 </Compile> 360 <Compile Include="Laava3.png"> 361 <Name>Laava3</Name> 362 <Importer>TextureImporter</Importer> 363 <Processor>TextureProcessor</Processor> 364 </Compile> 365 <Compile Include="Laava4.png"> 366 <Name>Laava4</Name> 367 <Importer>TextureImporter</Importer> 368 <Processor>TextureProcessor</Processor> 369 </Compile> 370 <Compile Include="Laava5.png"> 371 <Name>Laava5</Name> 372 <Importer>TextureImporter</Importer> 373 <Processor>TextureProcessor</Processor> 374 </Compile> 375 <Compile Include="Laava6.png"> 376 <Name>Laava6</Name> 377 <Importer>TextureImporter</Importer> 378 <Processor>TextureProcessor</Processor> 379 </Compile> 380 <Compile Include="Laava7.png"> 381 <Name>Laava7</Name> 382 <Importer>TextureImporter</Importer> 383 <Processor>TextureProcessor</Processor> 384 </Compile> 385 <Compile Include="Laava8.png"> 386 <Name>Laava8</Name> 387 <Importer>TextureImporter</Importer> 388 <Processor>TextureProcessor</Processor> 389 </Compile> 390 <Compile Include="Laava9.png"> 391 <Name>Laava9</Name> 392 <Importer>TextureImporter</Importer> 393 <Processor>TextureProcessor</Processor> 394 </Compile> 395 <Compile Include="LaavaKeski1.png"> 396 <Name>LaavaKeski1</Name> 397 <Importer>TextureImporter</Importer> 398 <Processor>TextureProcessor</Processor> 399 </Compile> 400 <Compile Include="LaavaKeski10.png"> 401 <Name>LaavaKeski10</Name> 402 <Importer>TextureImporter</Importer> 403 <Processor>TextureProcessor</Processor> 404 </Compile> 405 <Compile Include="LaavaKeski2.png"> 406 <Name>LaavaKeski2</Name> 407 <Importer>TextureImporter</Importer> 408 <Processor>TextureProcessor</Processor> 409 </Compile> 410 <Compile Include="LaavaKeski3.png"> 411 <Name>LaavaKeski3</Name> 412 <Importer>TextureImporter</Importer> 413 <Processor>TextureProcessor</Processor> 414 </Compile> 415 <Compile Include="LaavaKeski4.png"> 416 <Name>LaavaKeski4</Name> 417 <Importer>TextureImporter</Importer> 418 <Processor>TextureProcessor</Processor> 419 </Compile> 420 <Compile Include="LaavaKeski5.png"> 421 <Name>LaavaKeski5</Name> 422 <Importer>TextureImporter</Importer> 423 <Processor>TextureProcessor</Processor> 424 </Compile> 425 <Compile Include="LaavaKeski6.png"> 426 <Name>LaavaKeski6</Name> 427 <Importer>TextureImporter</Importer> 428 <Processor>TextureProcessor</Processor> 429 </Compile> 430 <Compile Include="LaavaKeski7.png"> 431 <Name>LaavaKeski7</Name> 432 <Importer>TextureImporter</Importer> 433 <Processor>TextureProcessor</Processor> 434 </Compile> 435 <Compile Include="LaavaKeski8.png"> 436 <Name>LaavaKeski8</Name> 437 <Importer>TextureImporter</Importer> 438 <Processor>TextureProcessor</Processor> 439 </Compile> 440 <Compile Include="LaavaKeski9.png"> 441 <Name>LaavaKeski9</Name> 442 <Importer>TextureImporter</Importer> 443 <Processor>TextureProcessor</Processor> 444 </Compile> 445 </ItemGroup> 240 446 <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\$(XnaFrameworkVersion)\Microsoft.Xna.GameStudio.ContentPipeline.targets" /> 241 447 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
2012/kerho/AkiP/Kirkle/KirkleContent/kentta1.txt
r3950 r3953 1 ************* ***************************************************** 2 * //////////( !! //////////////////////////////////////////////////////// *3 >>> >> >> ! ! **** ((((((((((( ( >> ############# ###**** ########## ***# *4 ( ( > ############# *** ###**** ########## ***# **5 G * * ( * * !( *** (( ####! ## ///* ###//// ### ///# //// G6 !((! * // //// ( ( ! ! ( S ( (( ! #### ## !### *#######! ### ####7 (( ( ( #### /// ###* ///// ### !####8 N ((( ( ( ###/// ### ##### ###////// ####9 //////////////////// / //////////// ////////////>> > >//////////// // ////////// ////////######////###/////////////##### ####////////// 10 #################### # ############ ############ ############ ## ########## #######################################//////////////############## 1 * * * * * %%% 2 ** * ** *********** /////////////////////////////////////////////////////// %%% 3 ! **** * ((((((((((( ** ((((((((((( !! ###******* ###**** ######### ***# %%% 4 ! * ( ( >>> ###******* *** ###**** ######### ***# ** %%% 5 1 ( ( ###////////// ///* ###//// ### ///# //// %%% 6 * (((( (( ! !**( S * * !(* *** (( ####! ## ### *#######! ### #### G %%% 7 H !((! * (( (( H ( **( H H ( (( ! H #### !###* //// ### !#### H %%% 8 N C (((( C ( ( C C C #### /// ### 1#### ###////// #### C %%% 9 D 1 (((( D 1( ( D D 1 D ###/// 1 ###/////////////#### 1 #### D %%% 10 //////////////////////// //////////// ////////////>> > >//////////// // ////////// ////////######////####################//////////////####////////// -
2012/kerho/AkiP/Kirkle/KirkleContent/kentta2.txt
r3950 r3953 1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 3 %** %%%% * %%%%%UUU***** % 4 %** %%%% ! %%%% %%%%UUUU*****%5 %** UUUU %%%% %%%%UUU%***** S%6 %%% UUUU % %%%%%% %%%%UUU%***** !%7 %%% ! %%%% %%%% %%%%%UU%%%%%%> > %%%%8 %%%%%% ** %% %%% %%%%%%% %%%% %%%%UUU%%% %%9 %%%%%%% %%%% %%%% %%%%UUU%%% %%> >> %%%10 % %%%% %%%%%%%% %%%%%%%%UU%%%% * ** %%%%%%%%%%%%%%11 % %%%% %%%% %%%%***%%%%%%%% %%%%%%%%UUU%%% * % %%%%%%%% 12 % %% %%%% %%%% %***%%%%%%%% %%%%%%%%UUU%%% %%%%%%%% 13 % % %%%% %%%% %***%%%%%%%% %%%%%%%%%UU%%% * % %%%%%%%% 14 % % %%%%% %%%% % %%%%%%%%%%%% %%%%%%%%UUU%%% % % %%%%%%%% 15 % %%% %%%% %%%% %%%%UUUU %%%%%%%%UUU%%% % %%%%16 % % %%%% %%%% %%%%UU%% > %% * %%%%17 % %% %%%% %%%% %%%% % %%%UUU%% %% %% %%%%18 % %%%% %%%% %%%UUU%% %% %%%%19 %*** %%%% %%%% ! %%%UU%%% !*******! %% %% % %%% 20 %%%% UUU% %% %%%% % UUUUU%%% %% % %%% 21 %%%% UUU% % %%%% %%%%%%%% %% %%% G%22 %%%%%% %UU% % %%%% %%%%%%%%%%%%%%%%%%%% %% % %%%%23 % %UU% %%% %%%% %%% **%%%%%%%%%%%%%%%%%%%% %% % %%% 24 % %%%UUU %%%% %%%%%%%%%%%%%%%%%%%% %% %%% 25 % %%%UUU %% UUUUU%%%%%%%%%%%%%%%! 26 % %%%% * * %%%%%%UU%%%%%%%%%%%%%%% % %%%%%%%%%%%%%%%%%27 % %%% %%%% %%%%%%UU%%******%%%%%%% ! %%%%%%%%%%%%%% %%%28 % %%%% %%%UUUU******%%%%%%%%%%* %%%%%%%%%%%%%% %%%29 % ! %%%% % % %%%%%%%******%%%%%%%%%% * % %%%%%%%%%%%%%%%%%30 %%% %%%%%% % %%%% %%%%%%%******%%%%%%%%%%* %%% %% %%%%%%%%%%%%%% %%%31 % %%%% %%%%%%%%%%%%%%%%%%%%%%%%% %%% %%%%%%%%%%%%%%%%%32 % N %%%% %%%%%%%%%%%%%%%%%%%%%%%%% %%% %%%%%%%%%%%%%%%%%33 %%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%@@@@%%%@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%% %%%34 %%%%%%%%%%%%%%%&&&&&&&&&&&&&&&&&&&&&&&&%%%%%%%%%%%%%%%%%%%%%%%%%&&&&%%%&&&&&&&&&&&&&&&&&&&&&&&&%%%%%%%%%%%%%%%%% 35 %%%%%%%%%%%%%%%&&&&&&&&&&&&&&&&&&&&&&&&%%%%%%%%%%%%%%%%%%%%%%%%%&&&&%%%&&&&&&&&&&&&&&&&&&&&&&&&%%%%%%%%%%%%%%%%% 1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 3 %** %%%% * %%%%%UUU***** %%%%%%%%% 4 %** %%%% ! %%%%%%%%%%%% %%%%UUUU***** K %%%%%%%%% 5 %** K UUUU %%%%% *** %%%%UUU%***** S K K K !%%%%%%%%% 6 %%% UUUU % %%%%%%% 2 %%%%UUU%***** 2 %%%%%%%%% 7 %%% ! %%%% %%%%% %%%%%%%%%%%%UU%%%%%%> > %%% %%%%%%%%% 8 %%%%%% ** %% %%% %%%%%%% %%%%% %%%%%%%%UUU%%% % %%%%%%%%% 9 %%%%%%% %%%% %%%%% %%%%%%%%UUU%%% %%> >> %%%%%%%%% %%%%%%%%%%%% 10 % 2 %%%% %%%%%%%% %%%%%%%%UU%%%% * ** %%%%%%%%% %%%%%%%%%%%% 11 % %%%% %%%% %%%%***%%%%%%%% %%%%%%%%UUU%%% * % %%%%%%%%% %%%%%%%%%%%% 12 % %% %%%% %%%% %***%%%%%%%% %%%%%%%%UUU%%% %%%%%%%%% %%%%%%%%%%%% 13 % % %%%% %%%% %***%%%%%%%% %%%%%%%%%UU%%% * % %%%%%%%%% %%%%%%%%%%%% 14 % % %%%%% %%%% % %%%%%%%%%%%% %%%%%%%%UUU%%% % % %%%%%%%%% %%%%%%%%%%%% 15 % %%% %%%% %%%% %%%%UUUU %%%%%%%%UUU%%% K % %%%%%%%%% %%%%%%%%%%%% 16 % % %%%% %%%% %%%%UU%% > %% 2 * %%%%%%%%% %%%%%%%%%%%% 17 % %% %%%% %%%% %%%% % %%%UUU%% K K %% %% %%%%%%%%% %%%%%%%%%%%% 18 % %%%% %%%% %%%UUU%% %% K %%%%%%%%% %%%%%%%%%%%% 19 %*** %%%% %%%% ! %%%UU%%% !*******! %% %% % %%%%%%%%% %%%%%%%%%%%% 20 %%%% UUU% %% %%%% % UUUUU%%% %% % %%%%%%%%% %%%%%%%%%%%% 21 %%%% UUU% % %%%% %%%%%%%% %% %%%%%%%%% %%%%%%%%%%%% 22 %%%%%% %UU% % %%%% 2 %%%%%%%%%%%%%%%%%%%% %% % %%%%%%%%% %%%%%%%%%%%% 23 % %UU% %%% %%%% %%% **%%%%%%%%%%%%%%%%%%%% %% % %%%%%%%%% %%%%%%%%%%%%%%%%% 24 % %%%UUU %%%% %%%%%%%%%%%%%%%%%%%% %% %%%%%%%%% %%%%%%%%%%%%%%%%% 25 % %%%UUU %% UUUUU%%%%%%%%%%%%%%%! K %%%%%%%%% %%%%%%%%%%%%%%%%% 26 % 2 %%%% K *K * %%%%%%UU%%%%%%%%%%%%%%% % %%%%%%%%% % 27 % %%% %%%% %%%%%%UU%%******%%%%%%% ! %%%%%%%%%%%%%% % 28 % %%%% %%%UUUU******%%%%%%%%%%* %%%%%%%%%%%%%% K K % 29 % K ! %%%% 2 % % %%%%%%%******%%%%%%%%%% * 2 % %%%%%%%%%%%%%% % 30 %%% %%%%%% % %%%% %%%%%%%******%%%%%%%%%%* %%% %% %%%%%%%%%%%%%% G % 31 % N %%%% %%%%%%%%%%%%%%%%%%%%%%%%% %%% %%%%%%%%%%%%%% % 32 % %%%% %%%%%%%%%%%%%%%%%%%%%%%%% %%% %%%%%%%%%%%%%% % 33 %%%%%%%%%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%@@@@%%%@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%% % 34 %%%%%%%%%%%%%%%&&&&&&&&&&&&&&&&&&&&&&&&%%%%%%%%%%%%%%%%%%%%%%%%%&&&&%%%&&&&&&&&&&&&&&&&&&&&&&&&%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 35 %%%%%%%%%%%%%%%&&&&&&&&&&&&&&&&&&&&&&&&%%%%%%%%%%%%%%%%%%%%%%%%%&&&&%%%&&&&&&&&&&&&&&&&&&&&&&&&%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -
2012/kerho/AkiP/Kirkle/KirkleContent/obj/x86/Debug/KirkleContent.contentproj.FileListAbsolute.txt
r3950 r3953 1 1 C:\MyTemp\ohjelmointikerho\Aki\Kirkle\Kirkle\KirkleContent\obj\x86\Debug\ResolveAssemblyReference.cache 2 2 C:\MyTemp\ohjelmointikerho\Akin\Kirkle\KirkleContent\obj\x86\Debug\ResolveAssemblyReference.cache 3 C:\MyTemp\ohjelmointikerho\AkiP\Kirkle\KirkleContent\obj\x86\Debug\ResolveAssemblyReference.cache
Note: See TracChangeset
for help on using the changeset viewer.