Changeset 4012
- Timestamp:
- 2013-06-07 12:08:13 (10 years ago)
- Location:
- 2013/23/VilppuP/Bansher
- Files:
-
- 46 added
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
2013/23/VilppuP/Bansher/Bansher.sln
r3978 r4012 4 4 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bansher", "Bansher\Bansher\Bansher.csproj", "{2AF3466A-E567-440C-886E-40816DE7DCC4}" 5 5 EndProject 6 Project("{ 96E2B04D-8817-42C6-938A-82C39BA4D311}") = "BansherContent", "Bansher\BansherContent\BansherContent.contentproj", "{58C23B4F-4342-49E5-8EBE-BCC3B5453FDB}"6 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BansherContent", "Bansher\BansherContent\BansherContent.contentproj", "{58C23B4F-4342-49E5-8EBE-BCC3B5453FDB}" 7 7 EndProject 8 8 Global 9 9 GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 Debug|Mixed Platforms = Debug|Mixed Platforms 11 Debug|Windows Phone = Debug|Windows Phone 10 12 Debug|x86 = Debug|x86 13 Release|Mixed Platforms = Release|Mixed Platforms 14 Release|Windows Phone = Release|Windows Phone 11 15 Release|x86 = Release|x86 12 16 EndGlobalSection 13 17 GlobalSection(ProjectConfigurationPlatforms) = postSolution 18 {2AF3466A-E567-440C-886E-40816DE7DCC4}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 19 {2AF3466A-E567-440C-886E-40816DE7DCC4}.Debug|Mixed Platforms.Build.0 = Debug|x86 20 {2AF3466A-E567-440C-886E-40816DE7DCC4}.Debug|Windows Phone.ActiveCfg = Debug|x86 21 {2AF3466A-E567-440C-886E-40816DE7DCC4}.Debug|Windows Phone.Build.0 = Debug|x86 14 22 {2AF3466A-E567-440C-886E-40816DE7DCC4}.Debug|x86.ActiveCfg = Debug|x86 15 23 {2AF3466A-E567-440C-886E-40816DE7DCC4}.Debug|x86.Build.0 = Debug|x86 24 {2AF3466A-E567-440C-886E-40816DE7DCC4}.Release|Mixed Platforms.ActiveCfg = Release|x86 25 {2AF3466A-E567-440C-886E-40816DE7DCC4}.Release|Mixed Platforms.Build.0 = Release|x86 26 {2AF3466A-E567-440C-886E-40816DE7DCC4}.Release|Windows Phone.ActiveCfg = Release|x86 27 {2AF3466A-E567-440C-886E-40816DE7DCC4}.Release|Windows Phone.Build.0 = Release|x86 16 28 {2AF3466A-E567-440C-886E-40816DE7DCC4}.Release|x86.ActiveCfg = Release|x86 17 29 {2AF3466A-E567-440C-886E-40816DE7DCC4}.Release|x86.Build.0 = Release|x86 30 {58C23B4F-4342-49E5-8EBE-BCC3B5453FDB}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 31 {58C23B4F-4342-49E5-8EBE-BCC3B5453FDB}.Debug|Windows Phone.ActiveCfg = Debug|x86 18 32 {58C23B4F-4342-49E5-8EBE-BCC3B5453FDB}.Debug|x86.ActiveCfg = Debug|x86 33 {58C23B4F-4342-49E5-8EBE-BCC3B5453FDB}.Release|Mixed Platforms.ActiveCfg = Release|x86 34 {58C23B4F-4342-49E5-8EBE-BCC3B5453FDB}.Release|Windows Phone.ActiveCfg = Release|x86 19 35 {58C23B4F-4342-49E5-8EBE-BCC3B5453FDB}.Release|x86.ActiveCfg = Release|x86 20 36 EndGlobalSection -
2013/23/VilppuP/Bansher/Bansher/Bansher/Bansher.cs
r3978 r4012 10 10 { 11 11 SoundEffect pallonPonnahdus = LoadSoundEffect("Boing1"); 12 SoundEffect peliPäättyy = LoadSoundEffect("Gameover"); 12 13 Image taustaKuva = LoadImage("Background"); 13 14 Image Logo = LoadImage("logo"); 14 15 IntMeter Laskuri; 16 Label pisteNaytto; 15 17 Vector alkupiste; 16 18 List<PhysicsObject> viivat; … … 19 21 EasyHighScore topLista = new EasyHighScore(); 20 22 PhysicsObject alaReuna; 23 PushButton clearScores; 21 24 22 25 public override void Begin() … … 26 29 ClearAll(); 27 30 viivat = new List<PhysicsObject>(); 31 MediaPlayer.IsRepeating = true; 28 32 IsMouseVisible = true; 29 33 Painovoima(); … … 31 35 LaskurinLuonti(); 32 36 Ohjaimet(); 33 Versio();34 37 Ajastin(); 38 Ajastin2(); 35 39 PalloGenerator(); 40 MediaPlayer.IsMuted = true; 36 41 piirrettavaViiva = new GameObject(2, 2); 37 42 piirrettavaViiva.Color = new Color(255, 255, 0, 100); 43 44 Label tekstikentta = new Label("v. 0.10.780"); 45 Add(tekstikentta); 46 tekstikentta.X = Screen.Right - 85; 47 tekstikentta.Y = Screen.Bottom + 25; 38 48 39 49 Widget logoWidget = new Widget(Logo); … … 42 52 PushButton parhaatPisteet = new PushButton("Parhaat pisteet"); 43 53 parhaatPisteet.Clicked += ParhaatPisteet; 54 PushButton ohjeet = new PushButton("Ohjeet"); 55 ohjeet.Clicked += Ohjeet; 44 56 PushButton Poistu = new PushButton("Lopeta"); 45 57 Poistu.Clicked += Exit; … … 49 61 alkuValikko.Add(aloitusNappi); 50 62 alkuValikko.Add(parhaatPisteet); 63 alkuValikko.Add(ohjeet); 51 64 alkuValikko.Add(Poistu); 52 65 Add(alkuValikko); … … 69 82 pallo.Shape = Shape.Circle; 70 83 pallo.Color = Color.Black; 71 pallo.Position = new Vector(0, Level.Top + 100); 72 pallo.Restitution = 0.8; 84 //pallo.Position = new Vector(0, Level.Top + 50); 85 pallo.Restitution = 0.5; 86 pallo.X = RandomGen.NextDouble(Level.Left, Level.Right); 87 pallo.Y = Level.Top + 50; 73 88 Add(pallo); 74 89 AddCollisionHandler(pallo, alaReuna, alareunanTormays); … … 78 93 void Painovoima() 79 94 { 80 Gravity = new Vector(0.0, - 150.0);95 Gravity = new Vector(0.0, -200.0); 81 96 } 82 97 … … 131 146 Laskuri = new IntMeter(0); 132 147 133 LabelpisteNaytto = new Label();134 pisteNaytto.X = Screen.Right - 50;148 pisteNaytto = new Label(); 149 pisteNaytto.X = Screen.Right - 100; 135 150 pisteNaytto.Y = Screen.Top - 20; 136 151 pisteNaytto.Title = "Score"; 152 pisteNaytto.IsVisible = false; 137 153 138 154 pisteNaytto.BindTo(Laskuri); … … 147 163 Listener l = Mouse.ListenMovement(0.1, PiirraViivaa, null); 148 164 PhoneBackButton.Listen(ConfirmExit, "Lopeta peli"); 149 Keyboard.Listen(Key.Escape, ButtonState.Pressed, ConfirmExit, "Lopeta peli");150 165 Keyboard.Listen(Key.R, ButtonState.Pressed, Begin, "Aloita uudelleen"); 151 152 } 153 154 void Versio() 155 { 156 Label tekstikentta = new Label("Development Stage"); 157 Add(tekstikentta); 158 tekstikentta.X = Screen.Right - 110; 159 tekstikentta.Y = Screen.Bottom + 30; 160 } 166 Keyboard.Listen(Key.Escape, ButtonState.Pressed, Tauko, "Lopeta peli"); 167 168 } 169 161 170 162 171 void AsetaAlkupiste() … … 207 216 viiva.Position = alkupiste + v / 2; 208 217 viiva.Angle = v.Angle; 209 viiva.Restitution = 1.0;218 viiva.Restitution = 0.5; 210 219 viiva.Tag = "viiva"; 211 220 Add(viiva); … … 237 246 { 238 247 IsPaused = false; 248 MediaPlayer.IsMuted = false; 249 pisteNaytto.IsVisible = true; 250 //clearScores.IsVisible = false; 251 MediaPlayer.Play("Music"); 239 252 } 240 253 241 254 void ParhaatPisteet() 242 255 { 256 //topLista.Clear(); 243 257 topLista.Show(); 258 topLista.HighScoreWindow.Closed += topListaSuljettu; 259 clearScores = new PushButton("Nollaa pisteet"); 260 clearScores.Clicked += NollaaPisteet; 261 clearScores.Position = new Vector(0, Level.Top - 50); 262 263 264 Add(clearScores); 265 } 266 267 void topListaSuljettu(Window sender) 268 { 269 clearScores.Destroy(); 270 } 271 272 void NollaaPisteet() 273 { 274 topLista.Clear(); 275 clearScores.Destroy(); 244 276 } 245 277 … … 248 280 MultiSelectWindow valikko = new MultiSelectWindow("Peli päättyi", "OK"); 249 281 valikko.ItemSelected += PainettiinValikonNappia; 250 Add(valikko); 282 Add(valikko); 283 MediaPlayer.Stop(); 284 peliPäättyy.Play(); 285 vasenNappiAlhaalla = false; 251 286 } 252 287 253 288 void Tulokset() 254 289 { 255 topLista.EnterText = " You got a high score of {0} points! Please enter your name";290 topLista.EnterText = "Please enter your name for {0} points!"; 256 291 topLista.EnterAndShow(Laskuri.Value); 257 292 topLista.HighScoreWindow.Closed += delegate { Begin(); }; … … 261 296 { 262 297 Timer ajastin = new Timer(); 263 ajastin.Interval = 5;298 ajastin.Interval = 10; 264 299 ajastin.Timeout += LisaaPalloja; 265 300 ajastin.Start(); 266 301 } 267 302 303 void Ajastin2() 304 { 305 Timer ajastin = new Timer(); 306 ajastin.Interval = 0.2; 307 ajastin.Timeout += LisaaPisteita; 308 ajastin.Start(); 309 } 310 311 void LisaaPisteita() 312 { 313 Laskuri.Value += 100; 314 } 315 268 316 void LisaaPalloja() 269 317 { 270 318 PalloGenerator(); 271 Laskuri.Value += 1; 319 } 320 321 void Tauko() 322 { 323 IsPaused = true; 324 MediaPlayer.Pause(); 325 326 YesNoWindow exitKysely = new YesNoWindow("Do you want to exit?"); 327 exitKysely.Yes += Exit; 328 exitKysely.No += Jatka; 329 Add(exitKysely); 330 } 331 332 void Jatka() 333 { 334 IsPaused = false; 335 MediaPlayer.Resume(); 336 } 337 338 void Ohjeet() 339 { 340 341 Label ohjeKentta1 = new Label("Welcome to Bansher!"); 342 Label ohjeKentta2 = new Label("In this game, you have to keep the balls from falling to the ground by"); 343 Label ohjeKentta3 = new Label("drawing bouncy lines (hold left mouse button, drag and release) "); 344 PushButton OK = new PushButton("OK"); 345 346 Window ohjeIkkuna = new Window(); 347 ohjeIkkuna.Add(ohjeKentta1); 348 ohjeIkkuna.Add(ohjeKentta2); 349 ohjeIkkuna.Add(ohjeKentta3); 350 ohjeIkkuna.Add(OK); 351 Add(ohjeIkkuna); 352 353 OK.Clicked += ohjeIkkuna.Close; 272 354 } 273 355 -
2013/23/VilppuP/Bansher/Bansher/Bansher/Bansher.csproj
r3978 r4012 19 19 <ApplicationIcon>Game.ico</ApplicationIcon> 20 20 <Thumbnail>GameThumbnail.png</Thumbnail> 21 <IsWebBootstrapper>false</IsWebBootstrapper> 22 <ReferencePath>$(registry:HKEY_LOCAL_MACHINE\Software\Jypeli@Install_Dir)\lib\x86</ReferencePath> 21 23 <PublishUrl>publish\</PublishUrl> 22 24 <Install>true</Install> … … 31 33 <ApplicationRevision>0</ApplicationRevision> 32 34 <ApplicationVersion>1.0.0.%2a</ApplicationVersion> 33 <IsWebBootstrapper>false</IsWebBootstrapper>34 35 <UseApplicationTrust>false</UseApplicationTrust> 35 36 <BootstrapperEnabled>true</BootstrapperEnabled> 36 <ReferencePath>$(registry:HKEY_LOCAL_MACHINE\Software\Jypeli@Install_Dir)\lib\x86</ReferencePath>37 37 </PropertyGroup> 38 38 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> -
2013/23/VilppuP/Bansher/Bansher/Bansher/Bansher.csproj.Debug.cachefile
r3978 r4012 2 2 Content\logo.xnb 3 3 Content\Boing1.xnb 4 Content\Music.xnb 5 Content\Gameover.xnb 6 Content\Background1.xnb 7 Content\Music.wma -
2013/23/VilppuP/Bansher/Bansher/Bansher/bin/x86/Debug/Data/_score.xml
r3978 r4012 6 6 <Item Index="0" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 7 7 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 8 <Value> dfafaw</Value>8 <Value>ayrttea</Value> 9 9 </Field> 10 10 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 11 <Value> 9</Value>11 <Value>48200</Value> 12 12 </Field> 13 13 </Item> 14 14 <Item Index="1" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 15 15 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 16 <Value> dfafaw</Value>16 <Value>-</Value> 17 17 </Field> 18 18 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 19 <Value> 7</Value>19 <Value>0</Value> 20 20 </Field> 21 21 </Item> 22 22 <Item Index="2" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 23 23 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 24 <Value> dfafaw</Value>24 <Value>-</Value> 25 25 </Field> 26 26 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 27 <Value> 7</Value>27 <Value>0</Value> 28 28 </Field> 29 29 </Item> 30 30 <Item Index="3" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 31 31 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 32 <Value> dfafaw</Value>32 <Value>-</Value> 33 33 </Field> 34 34 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 35 <Value> 7</Value>35 <Value>0</Value> 36 36 </Field> 37 37 </Item> 38 38 <Item Index="4" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 39 39 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 40 <Value> dfafaw</Value>40 <Value>-</Value> 41 41 </Field> 42 42 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 43 <Value> 6</Value>43 <Value>0</Value> 44 44 </Field> 45 45 </Item> 46 46 <Item Index="5" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 47 47 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 48 <Value> dfafaw</Value>48 <Value>-</Value> 49 49 </Field> 50 50 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 51 <Value> 6</Value>51 <Value>0</Value> 52 52 </Field> 53 53 </Item> 54 54 <Item Index="6" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 55 55 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 56 <Value> dfafaw</Value>56 <Value>-</Value> 57 57 </Field> 58 58 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 59 <Value> 5</Value>59 <Value>0</Value> 60 60 </Field> 61 61 </Item> 62 62 <Item Index="7" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 63 63 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 64 <Value> dfafaw</Value>64 <Value>-</Value> 65 65 </Field> 66 66 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 67 <Value> 5</Value>67 <Value>0</Value> 68 68 </Field> 69 69 </Item> 70 70 <Item Index="8" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 71 71 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 72 <Value> dfafaw</Value>72 <Value>-</Value> 73 73 </Field> 74 74 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 75 <Value> 5</Value>75 <Value>0</Value> 76 76 </Field> 77 77 </Item> 78 78 <Item Index="9" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 79 79 <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 80 <Value> dfafawg</Value>80 <Value>-</Value> 81 81 </Field> 82 82 <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 83 <Value> 4</Value>83 <Value>0</Value> 84 84 </Field> 85 85 </Item> … … 87 87 </Field> 88 88 <Field Name="LastEnteredName" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 89 <Value> dfafaw</Value>89 <Value>ayrttea</Value> 90 90 </Field> 91 91 </Object> -
2013/23/VilppuP/Bansher/Bansher/Bansher/obj/x86/Debug/Bansher.csproj.FileListAbsolute.txt
r3978 r4012 11 11 J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\logo.xnb 12 12 J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\Boing1.xnb 13 J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\Music.xnb 14 J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\Music.wma 15 J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\Gameover.xnb 16 J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\Background1.xnb -
2013/23/VilppuP/Bansher/Bansher/Bansher/obj/x86/Debug/cachefile-{58C23B4F-4342-49E5-8EBE-BCC3B5453FDB}-targetpath.txt
r3978 r4012 2 2 Content\logo.xnb 3 3 Content\Boing1.xnb 4 Content\Music.xnb 5 Content\Music.wma 6 Content\Gameover.xnb 7 Content\Background1.xnb -
2013/23/VilppuP/Bansher/Bansher/BansherContent/BansherContent.contentproj
r3978 r4012 66 66 </Compile> 67 67 </ItemGroup> 68 <ItemGroup> 69 <Compile Include="Gameover.wav"> 70 <Name>Gameover</Name> 71 <Importer>WavImporter</Importer> 72 <Processor>SoundEffectProcessor</Processor> 73 </Compile> 74 </ItemGroup> 75 <ItemGroup> 76 <Compile Include="Music.mp3"> 77 <Name>Music</Name> 78 <Importer>Mp3Importer</Importer> 79 <Processor>SongProcessor</Processor> 80 </Compile> 81 </ItemGroup> 82 <ItemGroup> 83 <Compile Include="Background1.png"> 84 <Name>Background1</Name> 85 <Importer>TextureImporter</Importer> 86 <Processor>TextureProcessor</Processor> 87 </Compile> 88 </ItemGroup> 68 89 <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\$(XnaFrameworkVersion)\Microsoft.Xna.GameStudio.ContentPipeline.targets" /> 69 90 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
2013/23/VilppuP/Bansher/Bansher/BansherContent/obj/x86/Debug/ContentPipeline.xml
r3978 r4012 18 18 <Options>None</Options> 19 19 <Output>J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\logo.xnb</Output> 20 <Time>2013-06-0 5T10:52:28.0950151+03:00</Time>20 <Time>2013-06-07T09:24:28.0481917+03:00</Time> 21 21 </Item> 22 22 <Item> … … 28 28 <Output>J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\Boing1.xnb</Output> 29 29 <Time>2013-06-05T14:23:15.745931+03:00</Time> 30 </Item> 31 <Item> 32 <Source>Music.mp3</Source> 33 <Name>Music</Name> 34 <Importer>Mp3Importer</Importer> 35 <Processor>SongProcessor</Processor> 36 <Options>None</Options> 37 <Output>J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\Music.xnb</Output> 38 <Extra>J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\Music.wma</Extra> 39 <Time>2013-06-07T09:45:08.5468567+03:00</Time> 40 </Item> 41 <Item> 42 <Source>Gameover.wav</Source> 43 <Name>Gameover</Name> 44 <Importer>WavImporter</Importer> 45 <Processor>SoundEffectProcessor</Processor> 46 <Options>None</Options> 47 <Output>J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\Gameover.xnb</Output> 48 <Time>2013-06-05T15:26:57.4705211+03:00</Time> 49 </Item> 50 <Item> 51 <Source>Background1.png</Source> 52 <Name>Background1</Name> 53 <Importer>TextureImporter</Importer> 54 <Processor>TextureProcessor</Processor> 55 <Options>None</Options> 56 <Output>J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\Background1.xnb</Output> 57 <Time>2013-06-07T09:47:48.6119171+03:00</Time> 30 58 </Item> 31 59 <BuildSuccessful>true</BuildSuccessful>
Note: See TracChangeset
for help on using the changeset viewer.