- Timestamp:
- 2015-07-23 14:59:12 (8 years ago)
- Location:
- 2015/30/OonaH
- Files:
-
- 28 added
- 35 edited
Legend:
- Unmodified
- Added
- Removed
-
2015/30/OonaH/Aurinkomyrsky/Aurinkomyrsky/Aurinkomyrsky/Aurinkomyrsky.cs
r6966 r6986 30 30 31 31 Image aukkoKuva = LoadImage("aukko2"); 32 Image aukkoVenus = LoadImage("aukkoVenus");33 Image aukkoEarth = LoadImage("aukkoearth");34 Image aukkoMars = LoadImage("aukkomars");35 32 36 33 Image laatikko = LoadImage("laatikko3"); 37 Image laatikkoVenus = LoadImage("laatikkovenus");38 Image laatikkoEarth = LoadImage("laatikkoearth");39 Image laatikkoMars = LoadImage("laatikkomars");40 34 41 35 Vector nopeusYlos = new Vector(0, 200); … … 44 38 Vector nopeusAlas = new Vector(0,-200); 45 39 46 Image[] laatikkoKuvat = LoadImages("laatikko3", "laatikkovenus", "laatikkoearth", "laatikkomars"); 40 Image[] aukkoKuvat = LoadImages("aukko2", "aukkoVenus", "aukkoearth", "alien", "aukkojupiter","aukkosaturn", "aukkouranus", "aukkoneptune"); 41 Image[] laatikkoKuvat = LoadImages("laatikko3", "laatikkovenus", "laatikkoearth", "laatikkomars", "laatikkojupiter", "laatikkosaturn", "laatikkouranus", "laatikkoneptune"); 47 42 SoundEffect maaliAani = LoadSoundEffect("maali"); 48 43 List<Label> valikonKohdat; 44 List<Label> planeetat = new List<Label>(); 49 45 Font Fontti = LoadFont("fontti1"); 50 46 Font Fontti2 = LoadFont("fontti2"); 51 47 int kenttanumero = 1; 52 48 53 //EasyHighScore topLista = new EasyHighScore();49 EasyHighScore topLista = new EasyHighScore(); 54 50 55 51 public override void Begin() … … 73 69 } 74 70 71 void Alku(Window sender) 72 { 73 Valikko(); 74 } 75 75 76 void TeePlaneetta(double x, double y, Image kuva, double halkaisija, int numero, string nimi) 76 77 { … … 87 88 teksti.Font = Fontti2; 88 89 Add(teksti); 90 planeetat.Add(teksti); 89 91 90 92 Mouse.ListenOn(planeetta, MouseButton.Left, ButtonState.Pressed, PlaneettaValittu, null, numero); 93 Mouse.ListenMovement(1.0, PlaneetoissaLiikkuminen, null); 94 } 95 96 void PlaneetoissaLiikkuminen(AnalogState hiiri) 97 { 98 foreach (Label kohta in planeetat) 99 { 100 if (Mouse.IsCursorOn(kohta)) 101 { 102 kohta.TextColor = Color.Wheat; 103 } 104 else 105 { 106 kohta.TextColor = Color.White; 107 } 108 } 91 109 } 92 110 … … 108 126 valikonKohdat = new List<Label>(); 109 127 110 Label kohta1 = new Label("Aloita uusi peli");111 kohta1.Position = new Vector(0, 60);112 kohta1.TextColor = vari;113 kohta1.Font = Fontti;114 valikonKohdat.Add(kohta1);115 116 128 Label kohta2 = new Label("Parhaat pisteet"); 117 kohta2.Position = new Vector(0, 0);129 kohta2.Position = new Vector(0, 40); 118 130 kohta2.TextColor = vari; 119 131 kohta2.Font = Fontti; … … 121 133 122 134 Label kohta3 = new Label("Lopeta peli"); 123 kohta3.Position = new Vector(0, - 60);135 kohta3.Position = new Vector(0, -40); 124 136 kohta3.TextColor = vari; 125 137 kohta3.Font = Fontti; … … 131 143 } 132 144 133 Mouse.ListenOn(kohta1, MouseButton.Left, ButtonState.Pressed, Aloita, null); 134 //Mouse.ListenOn(kohta2, MouseButton.Left, ButtonState.Pressed, ParhaatPisteet, null); 145 Mouse.ListenOn(kohta2, MouseButton.Left, ButtonState.Pressed, ParhaatPisteet, null); 135 146 Mouse.ListenOn(kohta3, MouseButton.Left, ButtonState.Pressed, Exit, null); 136 147 137 148 Mouse.ListenMovement(1.0, ValikossaLiikkuminen, null); 138 149 150 } 151 152 void ParhaatPisteet() 153 { 154 topLista.EnterAndShow(pisteLaskuri.Value); 155 topLista.HighScoreWindow.Closed += Alku; 139 156 } 140 157 … … 234 251 taso.Image = laatikko; 235 252 // Asettaa oikean kuvan 236 if (kenttanumero - 1 < =laatikkoKuvat.Length)253 if (kenttanumero - 1 < laatikkoKuvat.Length) 237 254 { 238 255 taso.Image = laatikkoKuvat[kenttanumero - 1]; … … 255 272 void LisaaPelaaja(Vector paikka, double leveys, double korkeus) 256 273 { 257 pelaaja1 = new PlatformCharacter(leveys - 3, korkeus -1);274 pelaaja1 = new PlatformCharacter(leveys -5, korkeus -3); 258 275 pelaaja1.Position = paikka; 259 276 pelaaja1.Image = pelaajanKuva; 260 //pelaaja1.CollisionIgnoreGroup = 1;261 277 AddCollisionHandler(pelaaja1, "tahti", TormaaTahteen); 262 278 AddCollisionHandler(pelaaja1, "aukko", TormaaMustaanAukkoon); … … 270 286 Explosion rajahdys = new Explosion(3000); 271 287 rajahdys.Position = pelaaja1.Position; 288 272 289 rajahdys.Image = aukkoKuva; 290 291 if (kenttanumero - 1 < aukkoKuvat.Length) 292 { 293 rajahdys.Image = aukkoKuvat[kenttanumero - 1]; 294 } 295 273 296 Add(rajahdys); 274 297 pelaaja1.Destroy(); 275 Timer.SingleShot(5.0, Begin);298 Timer.SingleShot(5.0, LisataanPisteet); 276 299 } 277 300 … … 282 305 Add(rajahdys); 283 306 pelaaja1.Destroy(); 284 Timer.SingleShot(5.0, Begin); 307 Timer.SingleShot(5.0, LisataanPisteet); 308 } 309 310 void LisataanPisteet() 311 { 312 ClearAll(); 313 Level.Background.CreateStars(); 314 topLista.EnterAndShow(pisteLaskuri.Value); 315 topLista.HighScoreWindow.Closed += Alku; 316 285 317 } 286 318 … … 292 324 aukko.Image = aukkoKuva; 293 325 aukko.Tag = "aukko"; 326 327 if (kenttanumero - 1 < aukkoKuvat.Length) 328 { 329 aukko.Image = aukkoKuvat[kenttanumero - 1]; 330 } 331 294 332 Add(aukko); 295 333 } … … 310 348 alus.Velocity = nopeus; 311 349 alus.Angle = nopeus.Angle; 350 351 if (alus.Right > Camera.X + Camera.FollowXMargin/2) 352 { 353 alus.Velocity = Vector.Zero; 354 return; 355 } 312 356 } 313 357 -
2015/30/OonaH/Aurinkomyrsky/Aurinkomyrsky/Aurinkomyrsky/Aurinkomyrsky.csproj.Debug.cachefile
r6966 r6986 32 32 Content\laatikkoearth.xnb 33 33 Content\laatikkomars.xnb 34 Content\alien.xnb 35 Content\aukkoneptune.xnb 36 Content\aukkosaturn.xnb 37 Content\aukkouranus.xnb 38 Content\aukkojupiter.xnb 39 Content\laatikkojupiter.xnb 40 Content\laatikkosaturn.xnb 41 Content\laatikkouranus.xnb 42 Content\laatikkoneptune.xnb 34 43 Content\kentta1.txt 35 44 Content\kentta2.txt -
2015/30/OonaH/Aurinkomyrsky/Aurinkomyrsky/Aurinkomyrsky/bin/x86/Debug/Content/kentta2.txt
r6936 r6986 1 .....................###############################################################################################################............ .............2 ......................#..........#......#...................................................##......###....... .##...#........................................3 .....................##.#.#.##.###.##.#.#.#################################################.##.##.#.#.. .#####.###.#.#.##############.........................4 ......................#.#.#. .#.....##.#.#.................................................#.##.##.###.#.....#.#.#.#.#.#............#.........................5 .....................##.#.##########..#.#####.##..#.#####################################.#.##.##.#...#####.#.......#.##########.#.#............ .............6 ......................#.#.........#####.#...#.###...###.......###################.........#.##.##.#.###...#.#######.#.#.......##.#.#............ .............7 .....................##.#######.#.# ...#.#.#.#.#.#####.#.#.#.#.#####.......#######.#########.##.####...#.#.#......##.#.#.#####....#.#.........................8 .....A................#.........#.##.##...#.#.#.......#.#.#.#.##.###.####.#.......#.........##.######.#.########.#..#.#.#...####.#.#............ .............9 .....................############.#...#####.#.#.#.#####.#.#.#.##.###.# ......##########.#######......#.#....#...#.#.##.#...#.#..###.#.........................10 ...............................##.##.###....#.#.#.#...#.#.#.#.#......######..........#.......#.#.##.#.####.#.#.#.#..#.#####...##.#.#............ .............11 .....................#########.##.#...##.####.#.#...#...#.#.#.######################.#########.#.##.#.#......#.#.##.#.#...##.##..#.#............ .............12 ..................... .#......#....#.#..#........#######.#...#...............................##.#.##.#.#.######.#.####.#.#.#..###.#.#.........................13 .....................##.####.######.##.##########.......###################################.##.#.##...#.#......#......#.#.##.....#.#............ .............14 .........................# .#.#...#...#.###...#..#.##########...#...#...#####.......###########.#.######.###.###########.#.########.#.........................15 .....................#####.....#...###.....#...##............#...#...#.......#####.............#......... .#........................#.........................16 ......................##############################################################################################################............ .............1 .....................###############################################################################################################............ 2 ......................#..........#......#...................................................##......###.......a##...#*.......................... 3 .....................##.#.#.##.###.##.#.#.#################################################.##.##.#.#..*#####.###.#.#.##############............ 4 ......................#.#.#.a#.....##.#.#.................................................#.##.##.###.#.....#.#.#.#.#.#a...........#............ 5 .....................##.#.##########..#.#####.##..#.#####################################.#.##.##.#...#####.#.......#.##########.#.#............ 6 ......................#.#.........#####.#...#.###...###.......###################.........#.##.##.#.###...#.#######.#.#.......##.#.#............ 7 .....................##.#######.#.#a..#.#.#.#.#*#####.#.#.#.#.#####.......#######.#########.##.####...#.#.#......##.#.#.#####....#.#............ 8 .....A................#.........#.##.##...#.#.#.......#.#.#.#.##.###.####.#.......#.........##.######.#.########.#..#.#.#...####.#.#............ 9 .....................############.#...#####.#.#.#.#####.#.#.#.##.###.#a.....##########.#######*.....#.#....#...#.#.##.#...#.#..###.#............ 10 ...............................##.##.###....#.#.#.#...#.#.#.#.#......######..........#.......#.#.##.#.####.#.#.#.#..#.#####...##.#.#............ 11 .....................#########.##.#...##.####.#.#...#...#.#.#.######################.#########.#.##.#.#......#.#.##.#.#...##.##..#.#............ 12 .....................*#......#....#.#..#........#######.#...#...............................##.#.##.#.#.######.#.####.#.#.#..###.#.#............ 13 .....................##.####.######.##.##########.......###################################.##.#.##...#.#......#......#.#.##.....#.#............ 14 .........................#a#.#...#...#.###...#.a#.##########...#...#...#####.......###########.#.######.###.###########.#.########.#............ 15 .....................#####.....#...###.....#...##............#...#...#.......#####.............#.........*#........................#............ 16 ......................##############################################################################################################............ -
2015/30/OonaH/Aurinkomyrsky/Aurinkomyrsky/Aurinkomyrsky/bin/x86/Debug/Content/kentta3.txt
r6966 r6986 1 .................#######################################################################################################################.......... .....2 .................##################### ##.......#########################################################################################...............3 .............................#.......# ##.#####.###########################################......###.....###########################....................4 .................###########.#.#####.# ##.####..####################################.....##.####.###.###.###########################.####...............5 .................########### ...#####.###.####.#####################################.###.##.####.###.###.###########################.####...............6 .........................####### ####.###.####..####################################.###....####.###.###.###########################.####...............7 ...A.............####### ############.###.#####.######........########...###########.###########.###.###.....#######################.####...............8 .................# ################...###.####..######.######.#........#.###########.###########.....#######.#######################....#...............9 .................# ################.#####.####.#######....###.#.########.##...#...##.#######################.....#....#################.#...............10 .................### ##############.......####.##########.###...########.##.#...#.##.###########################.#.##.##...############.#...............11 .........................#### ################.####.....#.##############....#####....###########################...##....#.############.#...............12 .................######### #################...####.###.#.################################################################....#########.#...............13 .................######### #################.######.###...###################################################################.#########.#...............14 ......................... ##################.######.#########################################################################...........#...............15 .................########### ###############........#####################################################################################...............16 .................#######################################################################################################################.......... .....1 .................#######################################################################################################################.......... 2 .................#####################.#.......#######......................#..........a#################...........a###################.......... 3 .............................#.......#.#.##.##.........####.###########.###.#.############......###.....#.#.###########....########............... 4 .................###########.#.#####.#.#.##.#..############.#...........#...#.#...#.....##.####.###.###.#.#.#.#...#...#.#.##......#.####.......... 5 .................###########*..#...#.#.#.##.#.##............#.#.###.#####.###.#.#.#.###.##.#a.#.###.#.#.#.#.#...#...#.#.#....####.#.####.......... 6 .........................#######.#.#.#.#.##.#..#.#.############.....#####.#.....#.#.#.#*...#..#.###.#.#.###.#########.#.######a.#.#.####.......... 7 ...A.............#######.#...#...###.#.#.##.##.#.#..#*.......########...#...#####.#.#.#######.#.###.#.#....*......#......#.####.#.#.####.......... 8 .................#.......#.#...###...#.#.##.#..#.##.#.######.#........#.###########.#.........#*....#.#####.##############......#.#....#.......... 9 .................#.#.#####.#####...###.#.##.#.##.#..#....###.#.########.##...#..*##.#.#########.#.#.#.....#.....#....######.#####.####.#.......... 10 .................###.###....#....#.......#a.#.#..#######.###...#......#.##.#...#.##.#.#.#....######.##.#.######.#.##.##...#....##....#.#.......... 11 .........................####.###############.#.##.....#.#.#######.#.##*...#####....#.....##.#...##.##.#......#...##....#.####.#####.#.#.......... 12 .................#########.a#............a#*..#.##.###.#.#...#...#.#.################.######.#.#.#..##.#.################....#.......#.#.......... 13 .................#########.################.###.a#.#.#...#.#.#.#.#.#.#...######.........#....#.#.#.###.#.#..............####.#########.#.......... 14 .............................#...###....#a#.######.#.#####.#.#.#.#.#.#.#........#######.#.######.#.###.#.#.#################...........#.......... 15 .................###########...#.....##...#................#...#...#...#.######.........#........#.....#................aaa#############.......... 16 .................#######################################################################################################################.......... -
2015/30/OonaH/Aurinkomyrsky/Aurinkomyrsky/Aurinkomyrsky/bin/x86/Debug/Content/kentta4.txt
r6966 r6986 1 .....................############################################################################################....... .........2 .....................##################### #######################################################################................3 ........................#...# #################################################################.....##############................4 .....................##.#.#.# #################################################################.###.##############................5 .....................##...#.# ##....########################.....#######################....#...###.##############................6 .....................######.###.##.# #######################.###.#######################.##.#.#####.##############................7 .....................# #####.....##.##################.....#.###...#####...#############.##...#####...############................8 ....A................# ############.##################.###.#.#####.#####.#.#############.############.############................9 .....................# ############....###.....#######.###...#####.###...#.###.....###...############.############................10 .....................## ##############.###.###.#######.###########.###.###.###.###.###.##############.############................11 .....................# ###############.###.###.###.....###########.....###.....###.....##############...##########................12 .....................# ###############.###.###.###.###############################################################................13 .....................# ###############.....###.....###############################################################................14 .....................# ###########################################################################################................15 ..................... ############################################################################################................16 .....................############################################################################################....... .........1 .....................############################################################################################....... 2 .....................#####################a#########################.#...#...#....###########################.#.#....... 3 ........................#...#........#.....#....#########.........##...#...#.##.#.#.............................#....... 4 .....................##.#.#.#.######.#.#####.##.#########.#######.##########..#.#.###.########.#.#.#.############....... 5 .....................##...#.#a#....#.#........#...#.......#.....#.........##....#.....#....#...#.#.#.#....#............. 6 .....................######.###.##.#.############.#.#######.###.#########.#############.##.#.###.#.###.##.#.#####....... 7 .....................#....#*....##.#..............#.#.....#.#.#...#.......#...........#.##...#...#...#..#.#.#...#....... 8 ....A................#.##.#.######.####.#####.#####.#.###.#.#.###.#.###.#.###.#####.###.############.##.#.#.#.#.#....... 9 .....................#..#...#....#....#.#.....#.....#.#a#...#*..#.#.#...#.#.......#.#...#...#.....##.#..#.#...#.#....... 10 .....................##.#####.#.#####.#.#.###.#.#####.#.#####.#.#.###.###.###.###.###.###.#.#.###.##.####.#####.#....... 11 .....................#..#.....#.....#.#.#.###.#a#.....#.......#.#.....#.#.....#.#.....#...#...#...##...##...#.#.#....... 12 .....................#.##.#########.#.###.###.###.#####.#######.#######.####.##.#######.#########.####..###.#.#.#....... 13 .....................#.#...#........#.....###.....#.....#a......#.......##a#.#..#.....#.#.........#...#..##.#.#.#....... 14 .....................#.#.###.######.###############.###########.#.###.####.#.#.##.##.##.#.#########.####..#.#.#.#....... 15 .........................#a..#.........................#............#......#.......#....#..............##.......#....... 16 .....................############################################################################################....... -
2015/30/OonaH/Aurinkomyrsky/Aurinkomyrsky/Aurinkomyrsky/bin/x86/Debug/Content/kentta5.txt
r6966 r6986 1 .....................############################################################################################................ 2 .....................############################################################################################................ 3 .....................############################################################################################................ 4 .....................############################################################################################................ 5 .....................############################################################################################................ 6 .....................############################################################################################................ 7 .............a................................................................................................................... 8 ....A................############################################################################################................ 9 .............*.......############################################################################################................ 1 10 .....................############################################################################################................ 2 11 .....................############################################################################################................ … … 6 15 .....................############################################################################################................ 7 16 .....................############################################################################################................ 8 ....A................############################################################################################................9 .....................############################################################################################................10 .....................############################################################################################................11 .....................############################################################################################................12 .....................############################################################################################................13 .....................############################################################################################................14 .....................############################################################################################................15 .....................############################################################################################................16 .....................############################################################################################................ -
2015/30/OonaH/Aurinkomyrsky/Aurinkomyrsky/Aurinkomyrsky/bin/x86/Debug/Content/kentta6.txt
r6966 r6986 1 1 .....................############################################################################################................ 2 ........................#...#######.#####...#...#...#....######...#.............#...........#.#........#......###................ 3 .....................##.#.#.#.........###.#.#.#.#.#.#.#.##...##.#.#.##########.######.#.#####.###.####.#.#.##.#.................. 4 .....................##*..#...#####.###...#...#*..#...#.#..#....#.#.#..##....#.#......#...#...#..*####.#.#.##.#.#................ 5 .....................##.#####.#.....###.#######.#####.#.#.#######.#.###...####.####.#####.#.#.###.####.###.##.#.#................ 6 .....................##.......#.###.#.......a##.#.#...#.....#...#.#...###......#......#.#...#...#...##.....####.#................ 7 .....................##.###.###.#.#.#####.#####.#.#.#####.#.#.#.###.#...########.####.#.#######.###.######.##.#.#................ 8 ....A................######...#.#.#...#...#.......#.#...#...#...#...###.#####.#a.a#...#......####...#...#...###.#................ 9 .......................######.#.#.#.#.#.#########.###.#.#########.###.#######.#####.######.###..#.#.#.###.###.#.#................ 10 .....................#.#...*..#.#...#......#...a#.......#.....#...###...#...#...#...#......####.#...#...#...#...#................ 11 .....................#.####.#####.#.######.#.##########.#####*#.#####.#.#.#.#.#.#.########*.....#.#####.#.#.#.###................ 12 .....................#....#...#............#........#a#.###.......#...#...#...#........###.#.##.#.#####...#..*#a#................ 13 .....................####.#.#.#.###############.###.#.#...#######.#.#.#.#.#####.#.########.#..#...###########.#.#................ 14 .....................#......#......#...##.....#.#a#.#.#.#..######...#.#.....###.#.#...####.########.......###.#.#................ 15 .....................#.##.########...#....###...#...#...##........#..*..###.........#......#........#####.......#................ 2 16 .....................############################################################################################................ 3 .....................############################################################################################................4 .....................############################################################################################................5 .....................############################################################################################................6 .....................############################################################################################................7 .....................############################################################################################................8 ....A................############################################################################################................9 .....................############################################################################################................10 .....................############################################################################################................11 .....................############################################################################################................12 .....................############################################################################################................13 .....................############################################################################################................14 .....................############################################################################################................15 .....................############################################################################################................16 .....................############################################################################################................ -
2015/30/OonaH/Aurinkomyrsky/Aurinkomyrsky/Aurinkomyrsky/bin/x86/Debug/Content/kentta7.txt
r6966 r6986 4 4 .....................############################################################################################................ 5 5 .....................############################################################################################................ 6 ...........a.........############################################################################################................ 6 7 .....................############################################################################################................ 7 .....................############################################################################################................ 8 ....A................############################################################################################................ 8 ....A......*.........############################################################################################................ 9 9 .....................############################################################################################................ 10 10 .....................############################################################################################................ -
2015/30/OonaH/Aurinkomyrsky/Aurinkomyrsky/Aurinkomyrsky/bin/x86/Debug/Content/kentta8.txt
r6966 r6986 4 4 .....................############################################################################################................ 5 5 .....................############################################################################################................ 6 ...............a.....############################################################################################................ 6 7 .....................############################################################################################................ 7 .....................############################################################################################................ 8 ....A................############################################################################################................ 8 ....A..........*.....############################################################################################................ 9 9 .....................############################################################################################................ 10 10 .....................############################################################################################................ -
2015/30/OonaH/Aurinkomyrsky/Aurinkomyrsky/Aurinkomyrsky/obj/x86/Debug/Aurinkomyrsky.csproj.FileListAbsolute.txt
r6966 r6986 48 48 C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\kentta7.txt 49 49 C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\kentta8.txt 50 C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\alien.xnb 51 C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\aukkoneptune.xnb 52 C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\aukkosaturn.xnb 53 C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\aukkouranus.xnb 54 C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\aukkojupiter.xnb 55 C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\laatikkojupiter.xnb 56 C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\laatikkosaturn.xnb 57 C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\laatikkouranus.xnb 58 C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\laatikkoneptune.xnb -
2015/30/OonaH/Aurinkomyrsky/Aurinkomyrsky/Aurinkomyrsky/obj/x86/Debug/cachefile-{95D20900-7005-425A-A0CD-AA83EC175105}-targetpath.txt
r6966 r6986 32 32 Content\laatikkoearth.xnb 33 33 Content\laatikkomars.xnb 34 Content\alien.xnb 35 Content\aukkoneptune.xnb 36 Content\aukkosaturn.xnb 37 Content\aukkouranus.xnb 38 Content\aukkojupiter.xnb 39 Content\laatikkojupiter.xnb 40 Content\laatikkosaturn.xnb 41 Content\laatikkouranus.xnb 42 Content\laatikkoneptune.xnb 34 43 Content\kentta1.txt 35 44 Content\kentta2.txt -
2015/30/OonaH/Aurinkomyrsky/Aurinkomyrsky/AurinkomyrskyContent/AurinkomyrskyContent.contentproj
r6966 r6986 246 246 <Processor>TextureProcessor</Processor> 247 247 </Compile> 248 <Compile Include="laatikkomars.png"> 249 <Name>laatikkomars</Name> 250 <Importer>TextureImporter</Importer> 251 <Processor>TextureProcessor</Processor> 252 </Compile> 253 </ItemGroup> 254 <ItemGroup> 255 <Compile Include="alien.png"> 256 <Name>alien</Name> 257 <Importer>TextureImporter</Importer> 258 <Processor>TextureProcessor</Processor> 259 </Compile> 260 </ItemGroup> 261 <ItemGroup> 262 <Compile Include="aukkoneptune.png"> 263 <Name>aukkoneptune</Name> 264 <Importer>TextureImporter</Importer> 265 <Processor>TextureProcessor</Processor> 266 </Compile> 267 <Compile Include="aukkosaturn.png"> 268 <Name>aukkosaturn</Name> 269 <Importer>TextureImporter</Importer> 270 <Processor>TextureProcessor</Processor> 271 </Compile> 272 <Compile Include="aukkouranus.png"> 273 <Name>aukkouranus</Name> 274 <Importer>TextureImporter</Importer> 275 <Processor>TextureProcessor</Processor> 276 </Compile> 277 </ItemGroup> 278 <ItemGroup> 279 <Compile Include="aukkojupiter.png"> 280 <Name>aukkojupiter</Name> 281 <Importer>TextureImporter</Importer> 282 <Processor>TextureProcessor</Processor> 283 </Compile> 284 </ItemGroup> 285 <ItemGroup> 286 <Compile Include="laatikkojupiter.png"> 287 <Name>laatikkojupiter</Name> 288 <Importer>TextureImporter</Importer> 289 <Processor>TextureProcessor</Processor> 290 </Compile> 291 <Compile Include="laatikkosaturn.png"> 292 <Name>laatikkosaturn</Name> 293 <Importer>TextureImporter</Importer> 294 <Processor>TextureProcessor</Processor> 295 </Compile> 296 <Compile Include="laatikkouranus.png"> 297 <Name>laatikkouranus</Name> 298 <Importer>TextureImporter</Importer> 299 <Processor>TextureProcessor</Processor> 300 </Compile> 301 </ItemGroup> 302 <ItemGroup> 303 <Compile Include="laatikkoneptune.png"> 304 <Name>laatikkoneptune</Name> 305 <Importer>TextureImporter</Importer> 306 <Processor>TextureProcessor</Processor> 307 </Compile> 308 </ItemGroup> 309 <ItemGroup> 248 310 <Compile Include="laatikkoearth.png"> 249 311 <Name>laatikkoearth</Name> 250 <Importer>TextureImporter</Importer>251 <Processor>TextureProcessor</Processor>252 </Compile>253 <Compile Include="laatikkomars.png">254 <Name>laatikkomars</Name>255 312 <Importer>TextureImporter</Importer> 256 313 <Processor>TextureProcessor</Processor> -
2015/30/OonaH/Aurinkomyrsky/Aurinkomyrsky/AurinkomyrskyContent/kentta2.txt
r6936 r6986 1 .....................###############################################################################################################............ .............2 ......................#..........#......#...................................................##......###....... .##...#........................................3 .....................##.#.#.##.###.##.#.#.#################################################.##.##.#.#.. .#####.###.#.#.##############.........................4 ......................#.#.#. .#.....##.#.#.................................................#.##.##.###.#.....#.#.#.#.#.#............#.........................5 .....................##.#.##########..#.#####.##..#.#####################################.#.##.##.#...#####.#.......#.##########.#.#............ .............6 ......................#.#.........#####.#...#.###...###.......###################.........#.##.##.#.###...#.#######.#.#.......##.#.#............ .............7 .....................##.#######.#.# ...#.#.#.#.#.#####.#.#.#.#.#####.......#######.#########.##.####...#.#.#......##.#.#.#####....#.#.........................8 .....A................#.........#.##.##...#.#.#.......#.#.#.#.##.###.####.#.......#.........##.######.#.########.#..#.#.#...####.#.#............ .............9 .....................############.#...#####.#.#.#.#####.#.#.#.##.###.# ......##########.#######......#.#....#...#.#.##.#...#.#..###.#.........................10 ...............................##.##.###....#.#.#.#...#.#.#.#.#......######..........#.......#.#.##.#.####.#.#.#.#..#.#####...##.#.#............ .............11 .....................#########.##.#...##.####.#.#...#...#.#.#.######################.#########.#.##.#.#......#.#.##.#.#...##.##..#.#............ .............12 ..................... .#......#....#.#..#........#######.#...#...............................##.#.##.#.#.######.#.####.#.#.#..###.#.#.........................13 .....................##.####.######.##.##########.......###################################.##.#.##...#.#......#......#.#.##.....#.#............ .............14 .........................# .#.#...#...#.###...#..#.##########...#...#...#####.......###########.#.######.###.###########.#.########.#.........................15 .....................#####.....#...###.....#...##............#...#...#.......#####.............#......... .#........................#.........................16 ......................##############################################################################################################............ .............1 .....................###############################################################################################################............ 2 ......................#..........#......#...................................................##......###.......a##...#*.......................... 3 .....................##.#.#.##.###.##.#.#.#################################################.##.##.#.#..*#####.###.#.#.##############............ 4 ......................#.#.#.a#.....##.#.#.................................................#.##.##.###.#.....#.#.#.#.#.#a...........#............ 5 .....................##.#.##########..#.#####.##..#.#####################################.#.##.##.#...#####.#.......#.##########.#.#............ 6 ......................#.#.........#####.#...#.###...###.......###################.........#.##.##.#.###...#.#######.#.#.......##.#.#............ 7 .....................##.#######.#.#a..#.#.#.#.#*#####.#.#.#.#.#####.......#######.#########.##.####...#.#.#......##.#.#.#####....#.#............ 8 .....A................#.........#.##.##...#.#.#.......#.#.#.#.##.###.####.#.......#.........##.######.#.########.#..#.#.#...####.#.#............ 9 .....................############.#...#####.#.#.#.#####.#.#.#.##.###.#a.....##########.#######*.....#.#....#...#.#.##.#...#.#..###.#............ 10 ...............................##.##.###....#.#.#.#...#.#.#.#.#......######..........#.......#.#.##.#.####.#.#.#.#..#.#####...##.#.#............ 11 .....................#########.##.#...##.####.#.#...#...#.#.#.######################.#########.#.##.#.#......#.#.##.#.#...##.##..#.#............ 12 .....................*#......#....#.#..#........#######.#...#...............................##.#.##.#.#.######.#.####.#.#.#..###.#.#............ 13 .....................##.####.######.##.##########.......###################################.##.#.##...#.#......#......#.#.##.....#.#............ 14 .........................#a#.#...#...#.###...#.a#.##########...#...#...#####.......###########.#.######.###.###########.#.########.#............ 15 .....................#####.....#...###.....#...##............#...#...#.......#####.............#.........*#........................#............ 16 ......................##############################################################################################################............ -
2015/30/OonaH/Aurinkomyrsky/Aurinkomyrsky/AurinkomyrskyContent/kentta3.txt
r6966 r6986 1 .................#######################################################################################################################.......... .....2 .................##################### ##.......#########################################################################################...............3 .............................#.......# ##.#####.###########################################......###.....###########################....................4 .................###########.#.#####.# ##.####..####################################.....##.####.###.###.###########################.####...............5 .................########### ...#####.###.####.#####################################.###.##.####.###.###.###########################.####...............6 .........................####### ####.###.####..####################################.###....####.###.###.###########################.####...............7 ...A.............####### ############.###.#####.######........########...###########.###########.###.###.....#######################.####...............8 .................# ################...###.####..######.######.#........#.###########.###########.....#######.#######################....#...............9 .................# ################.#####.####.#######....###.#.########.##...#...##.#######################.....#....#################.#...............10 .................### ##############.......####.##########.###...########.##.#...#.##.###########################.#.##.##...############.#...............11 .........................#### ################.####.....#.##############....#####....###########################...##....#.############.#...............12 .................######### #################...####.###.#.################################################################....#########.#...............13 .................######### #################.######.###...###################################################################.#########.#...............14 ......................... ##################.######.#########################################################################...........#...............15 .................########### ###############........#####################################################################################...............16 .................#######################################################################################################################.......... .....1 .................#######################################################################################################################.......... 2 .................#####################.#.......#######......................#..........a#################...........a###################.......... 3 .............................#.......#.#.##.##.........####.###########.###.#.############......###.....#.#.###########....########............... 4 .................###########.#.#####.#.#.##.#..############.#...........#...#.#...#.....##.####.###.###.#.#.#.#...#...#.#.##......#.####.......... 5 .................###########*..#...#.#.#.##.#.##............#.#.###.#####.###.#.#.#.###.##.#a.#.###.#.#.#.#.#...#...#.#.#....####.#.####.......... 6 .........................#######.#.#.#.#.##.#..#.#.############.....#####.#.....#.#.#.#*...#..#.###.#.#.###.#########.#.######a.#.#.####.......... 7 ...A.............#######.#...#...###.#.#.##.##.#.#..#*.......########...#...#####.#.#.#######.#.###.#.#....*......#......#.####.#.#.####.......... 8 .................#.......#.#...###...#.#.##.#..#.##.#.######.#........#.###########.#.........#*....#.#####.##############......#.#....#.......... 9 .................#.#.#####.#####...###.#.##.#.##.#..#....###.#.########.##...#..*##.#.#########.#.#.#.....#.....#....######.#####.####.#.......... 10 .................###.###....#....#.......#a.#.#..#######.###...#......#.##.#...#.##.#.#.#....######.##.#.######.#.##.##...#....##....#.#.......... 11 .........................####.###############.#.##.....#.#.#######.#.##*...#####....#.....##.#...##.##.#......#...##....#.####.#####.#.#.......... 12 .................#########.a#............a#*..#.##.###.#.#...#...#.#.################.######.#.#.#..##.#.################....#.......#.#.......... 13 .................#########.################.###.a#.#.#...#.#.#.#.#.#.#...######.........#....#.#.#.###.#.#..............####.#########.#.......... 14 .............................#...###....#a#.######.#.#####.#.#.#.#.#.#.#........#######.#.######.#.###.#.#.#################...........#.......... 15 .................###########...#.....##...#................#...#...#...#.######.........#........#.....#................aaa#############.......... 16 .................#######################################################################################################################.......... -
2015/30/OonaH/Aurinkomyrsky/Aurinkomyrsky/AurinkomyrskyContent/kentta4.txt
r6966 r6986 1 .....................############################################################################################....... .........2 .....................##################### #######################################################################................3 ........................#...# #################################################################.....##############................4 .....................##.#.#.# #################################################################.###.##############................5 .....................##...#.# ##....########################.....#######################....#...###.##############................6 .....................######.###.##.# #######################.###.#######################.##.#.#####.##############................7 .....................# #####.....##.##################.....#.###...#####...#############.##...#####...############................8 ....A................# ############.##################.###.#.#####.#####.#.#############.############.############................9 .....................# ############....###.....#######.###...#####.###...#.###.....###...############.############................10 .....................## ##############.###.###.#######.###########.###.###.###.###.###.##############.############................11 .....................# ###############.###.###.###.....###########.....###.....###.....##############...##########................12 .....................# ###############.###.###.###.###############################################################................13 .....................# ###############.....###.....###############################################################................14 .....................# ###########################################################################################................15 ..................... ############################################################################################................16 .....................############################################################################################....... .........1 .....................############################################################################################....... 2 .....................#####################a#########################.#...#...#....###########################.#.#....... 3 ........................#...#........#.....#....#########.........##...#...#.##.#.#.............................#....... 4 .....................##.#.#.#.######.#.#####.##.#########.#######.##########..#.#.###.########.#.#.#.############....... 5 .....................##...#.#a#....#.#........#...#.......#.....#.........##....#.....#....#...#.#.#.#....#............. 6 .....................######.###.##.#.############.#.#######.###.#########.#############.##.#.###.#.###.##.#.#####....... 7 .....................#....#*....##.#..............#.#.....#.#.#...#.......#...........#.##...#...#...#..#.#.#...#....... 8 ....A................#.##.#.######.####.#####.#####.#.###.#.#.###.#.###.#.###.#####.###.############.##.#.#.#.#.#....... 9 .....................#..#...#....#....#.#.....#.....#.#a#...#*..#.#.#...#.#.......#.#...#...#.....##.#..#.#...#.#....... 10 .....................##.#####.#.#####.#.#.###.#.#####.#.#####.#.#.###.###.###.###.###.###.#.#.###.##.####.#####.#....... 11 .....................#..#.....#.....#.#.#.###.#a#.....#.......#.#.....#.#.....#.#.....#...#...#...##...##...#.#.#....... 12 .....................#.##.#########.#.###.###.###.#####.#######.#######.####.##.#######.#########.####..###.#.#.#....... 13 .....................#.#...#........#.....###.....#.....#a......#.......##a#.#..#.....#.#.........#...#..##.#.#.#....... 14 .....................#.#.###.######.###############.###########.#.###.####.#.#.##.##.##.#.#########.####..#.#.#.#....... 15 .........................#a..#.........................#............#......#.......#....#..............##.......#....... 16 .....................############################################################################################....... -
2015/30/OonaH/Aurinkomyrsky/Aurinkomyrsky/AurinkomyrskyContent/kentta5.txt
r6966 r6986 1 .....................############################################################################################................ 2 .....................############################################################################################................ 3 .....................############################################################################################................ 4 .....................############################################################################################................ 5 .....................############################################################################################................ 6 .....................############################################################################################................ 7 .............a................................................................................................................... 8 ....A................############################################################################################................ 9 .............*.......############################################################################################................ 1 10 .....................############################################################################################................ 2 11 .....................############################################################################################................ … … 6 15 .....................############################################################################################................ 7 16 .....................############################################################################################................ 8 ....A................############################################################################################................9 .....................############################################################################################................10 .....................############################################################################################................11 .....................############################################################################################................12 .....................############################################################################################................13 .....................############################################################################################................14 .....................############################################################################################................15 .....................############################################################################################................16 .....................############################################################################################................ -
2015/30/OonaH/Aurinkomyrsky/Aurinkomyrsky/AurinkomyrskyContent/kentta6.txt
r6966 r6986 1 1 .....................############################################################################################................ 2 ........................#...#######.#####...#...#...#....######...#.............#...........#.#........#......###................ 3 .....................##.#.#.#.........###.#.#.#.#.#.#.#.##...##.#.#.##########.######.#.#####.###.####.#.#.##.#.................. 4 .....................##*..#...#####.###...#...#*..#...#.#..#....#.#.#..##....#.#......#...#...#..*####.#.#.##.#.#................ 5 .....................##.#####.#.....###.#######.#####.#.#.#######.#.###...####.####.#####.#.#.###.####.###.##.#.#................ 6 .....................##.......#.###.#.......a##.#.#...#.....#...#.#...###......#......#.#...#...#...##.....####.#................ 7 .....................##.###.###.#.#.#####.#####.#.#.#####.#.#.#.###.#...########.####.#.#######.###.######.##.#.#................ 8 ....A................######...#.#.#...#...#.......#.#...#...#...#...###.#####.#a.a#...#......####...#...#...###.#................ 9 .......................######.#.#.#.#.#.#########.###.#.#########.###.#######.#####.######.###..#.#.#.###.###.#.#................ 10 .....................#.#...*..#.#...#......#...a#.......#.....#...###...#...#...#...#......####.#...#...#...#...#................ 11 .....................#.####.#####.#.######.#.##########.#####*#.#####.#.#.#.#.#.#.########*.....#.#####.#.#.#.###................ 12 .....................#....#...#............#........#a#.###.......#...#...#...#........###.#.##.#.#####...#..*#a#................ 13 .....................####.#.#.#.###############.###.#.#...#######.#.#.#.#.#####.#.########.#..#...###########.#.#................ 14 .....................#......#......#...##.....#.#a#.#.#.#..######...#.#.....###.#.#...####.########.......###.#.#................ 15 .....................#.##.########...#....###...#...#...##........#..*..###.........#......#........#####.......#................ 2 16 .....................############################################################################################................ 3 .....................############################################################################################................4 .....................############################################################################################................5 .....................############################################################################################................6 .....................############################################################################################................7 .....................############################################################################################................8 ....A................############################################################################################................9 .....................############################################################################################................10 .....................############################################################################################................11 .....................############################################################################################................12 .....................############################################################################################................13 .....................############################################################################################................14 .....................############################################################################################................15 .....................############################################################################################................16 .....................############################################################################################................ -
2015/30/OonaH/Aurinkomyrsky/Aurinkomyrsky/AurinkomyrskyContent/kentta7.txt
r6966 r6986 4 4 .....................############################################################################################................ 5 5 .....................############################################################################################................ 6 ...........a.........############################################################################################................ 6 7 .....................############################################################################################................ 7 .....................############################################################################################................ 8 ....A................############################################################################################................ 8 ....A......*.........############################################################################################................ 9 9 .....................############################################################################################................ 10 10 .....................############################################################################################................ -
2015/30/OonaH/Aurinkomyrsky/Aurinkomyrsky/AurinkomyrskyContent/kentta8.txt
r6966 r6986 4 4 .....................############################################################################################................ 5 5 .....................############################################################################################................ 6 ...............a.....############################################################################################................ 6 7 .....................############################################################################################................ 7 .....................############################################################################################................ 8 ....A................############################################################################################................ 8 ....A..........*.....############################################################################################................ 9 9 .....................############################################################################################................ 10 10 .....................############################################################################################................ -
2015/30/OonaH/Aurinkomyrsky/Aurinkomyrsky/AurinkomyrskyContent/obj/x86/Debug/ContentPipeline.xml
r6966 r6986 180 180 <Options>None</Options> 181 181 <Output>C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\kentta2.xnb</Output> 182 <Time>2015-07-2 2T14:56:46.1845298+03:00</Time>182 <Time>2015-07-23T13:13:04.7582008+03:00</Time> 183 183 </Item> 184 184 <Item> … … 198 198 <Options>None</Options> 199 199 <Output>C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\kentta3.xnb</Output> 200 <Time>2015-07-23T1 1:30:26.886726+03:00</Time>200 <Time>2015-07-23T13:02:00.6132124+03:00</Time> 201 201 </Item> 202 202 <Item> … … 207 207 <Options>None</Options> 208 208 <Output>C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\kentta4.xnb</Output> 209 <Time>2015-07-23T1 1:36:11.2691608+03:00</Time>209 <Time>2015-07-23T14:11:54.6042783+03:00</Time> 210 210 </Item> 211 211 <Item> … … 216 216 <Options>None</Options> 217 217 <Output>C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\kentta5.xnb</Output> 218 <Time>2015-07-23T1 1:36:11.2561595+03:00</Time>218 <Time>2015-07-23T13:47:56.5231399+03:00</Time> 219 219 </Item> 220 220 <Item> … … 225 225 <Options>None</Options> 226 226 <Output>C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\kentta6.xnb</Output> 227 <Time>2015-07-23T1 1:36:11.251159+03:00</Time>227 <Time>2015-07-23T14:51:25.0720765+03:00</Time> 228 228 </Item> 229 229 <Item> … … 234 234 <Options>None</Options> 235 235 <Output>C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\kentta7.xnb</Output> 236 <Time>2015-07-23T1 1:36:11.2461585+03:00</Time>236 <Time>2015-07-23T13:47:56.5477399+03:00</Time> 237 237 </Item> 238 238 <Item> … … 243 243 <Options>None</Options> 244 244 <Output>C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\kentta8.xnb</Output> 245 <Time>2015-07-23T1 1:36:11.2331572+03:00</Time>245 <Time>2015-07-23T13:47:56.5557399+03:00</Time> 246 246 </Item> 247 247 <Item> … … 288 288 <Options>None</Options> 289 289 <Output>C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\laatikkoearth.xnb</Output> 290 <Time>2015-07-23T1 1:17:12.1312584+03:00</Time>290 <Time>2015-07-23T13:45:25.1412399+03:00</Time> 291 291 </Item> 292 292 <Item> … … 298 298 <Output>C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\laatikkomars.xnb</Output> 299 299 <Time>2015-07-23T11:17:12.1322585+03:00</Time> 300 </Item> 301 <Item> 302 <Source>alien.png</Source> 303 <Name>alien</Name> 304 <Importer>TextureImporter</Importer> 305 <Processor>TextureProcessor</Processor> 306 <Options>None</Options> 307 <Output>C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\alien.xnb</Output> 308 <Time>2015-07-23T13:24:43.7907195+03:00</Time> 309 </Item> 310 <Item> 311 <Source>aukkoneptune.png</Source> 312 <Name>aukkoneptune</Name> 313 <Importer>TextureImporter</Importer> 314 <Processor>TextureProcessor</Processor> 315 <Options>None</Options> 316 <Output>C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\aukkoneptune.xnb</Output> 317 <Time>2015-07-23T13:50:14.0665399+03:00</Time> 318 </Item> 319 <Item> 320 <Source>aukkosaturn.png</Source> 321 <Name>aukkosaturn</Name> 322 <Importer>TextureImporter</Importer> 323 <Processor>TextureProcessor</Processor> 324 <Options>None</Options> 325 <Output>C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\aukkosaturn.xnb</Output> 326 <Time>2015-07-23T13:27:17.8276816+03:00</Time> 327 </Item> 328 <Item> 329 <Source>aukkouranus.png</Source> 330 <Name>aukkouranus</Name> 331 <Importer>TextureImporter</Importer> 332 <Processor>TextureProcessor</Processor> 333 <Options>None</Options> 334 <Output>C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\aukkouranus.xnb</Output> 335 <Time>2015-07-23T13:27:17.8276816+03:00</Time> 336 </Item> 337 <Item> 338 <Source>aukkojupiter.png</Source> 339 <Name>aukkojupiter</Name> 340 <Importer>TextureImporter</Importer> 341 <Processor>TextureProcessor</Processor> 342 <Options>None</Options> 343 <Output>C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\aukkojupiter.xnb</Output> 344 <Time>2015-07-23T13:28:05.0628443+03:00</Time> 345 </Item> 346 <Item> 347 <Source>laatikkojupiter.png</Source> 348 <Name>laatikkojupiter</Name> 349 <Importer>TextureImporter</Importer> 350 <Processor>TextureProcessor</Processor> 351 <Options>None</Options> 352 <Output>C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\laatikkojupiter.xnb</Output> 353 <Time>2015-07-23T13:41:16.8674812+03:00</Time> 354 </Item> 355 <Item> 356 <Source>laatikkosaturn.png</Source> 357 <Name>laatikkosaturn</Name> 358 <Importer>TextureImporter</Importer> 359 <Processor>TextureProcessor</Processor> 360 <Options>None</Options> 361 <Output>C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\laatikkosaturn.xnb</Output> 362 <Time>2015-07-23T13:41:16.8674812+03:00</Time> 363 </Item> 364 <Item> 365 <Source>laatikkouranus.png</Source> 366 <Name>laatikkouranus</Name> 367 <Importer>TextureImporter</Importer> 368 <Processor>TextureProcessor</Processor> 369 <Options>None</Options> 370 <Output>C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\laatikkouranus.xnb</Output> 371 <Time>2015-07-23T13:41:16.8674812+03:00</Time> 372 </Item> 373 <Item> 374 <Source>laatikkoneptune.png</Source> 375 <Name>laatikkoneptune</Name> 376 <Importer>TextureImporter</Importer> 377 <Processor>TextureProcessor</Processor> 378 <Options>None</Options> 379 <Output>C:\MyTemp\OonaH\Aurinkomyrsky\Aurinkomyrsky\Aurinkomyrsky\bin\x86\Debug\Content\laatikkoneptune.xnb</Output> 380 <Time>2015-07-23T13:43:46.2069399+03:00</Time> 300 381 </Item> 301 382 <BuildSuccessful>true</BuildSuccessful>
Note: See TracChangeset
for help on using the changeset viewer.