Changeset 2400
- Timestamp:
- 2011-07-01 10:39:02 (12 years ago)
- Location:
- 2011/26/JuhoK
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
2011/26/JuhoK/SFN_New/SFN/SFN/SFN/Peli.cs
r2385 r2400 12 12 public class Peli : TopDownPhysicsGame 13 13 { 14 [Save] List<Auto> autot = new List<Auto>(); 14 [Save] 15 List<Auto> autot = new List<Auto>(); 15 16 List<Image> autokuvat = new List<Image>(); 16 17 List<int> hinnat = new List<int>(); … … 19 20 Label number, malli, moottori, renkaat, moottorin_hinta, renkaiden_hinta, sell_price, rahat, keskiauto; 20 21 Image MenuBackround, Arrow; 21 [Save] int ID = 0; 22 [Save] 23 public int ID = 0; 22 24 int max_taso = 5; 23 [Save] double raha = 50000; 25 [Save] 26 public double raha = 0; 24 27 int ChangeColor; 25 28 … … 35 38 Timer kisa_aika; 36 39 37 string pelitallennus = "";38 39 40 public override void Begin() 40 41 { … … 47 48 48 49 //Create a car 49 autot.Add(new Auto(mallit[ 3], 3, 1, 4, 5));50 50 autot.Add(new Auto(mallit[0], 0, 0, 1, 1)); 51 //autot.Add(new Auto(mallit[3], 3, 3, 5, 5)); 51 52 } 52 53 … … 88 89 mallit[2] = "Model2"; //Car 2 Price 89 90 mallit[3] = "Model3"; //Car 3 Price 90 91 91 92 kisa_aika = new Timer(); 92 93 MessageDisplay.TextColor = Color.Yellow; … … 150 151 //Keyboard.Listen(Key.Escape, ButtonState.Released, Exit, null); 151 152 //Window.AllowUserResizing = true; 152 153 153 154 154 155 LuoKisat(); 155 156 … … 206 207 void load_game_Clicked() 207 208 { 208 if (DataStorage.Exists("data\\" + pelitallennus.ToString())) 209 { 210 LoadGame(pelitallennus.ToString()); 209 if ((DataStorage.Exists("autot.xml")) == true && (DataStorage.Exists("doublet.xml")) == true && (DataStorage.Exists("intit.xml")) == true) 210 { 211 autot = DataStorage.Load<List<Auto>>(autot, "autot.xml"); 212 ID = DataStorage.Load<int>(ID, "intit.xml"); 213 raha = DataStorage.Load<double>(raha, "doublet.xml"); 214 211 215 GoToShop(); 212 216 } 213 217 else 214 218 { 215 ShowMessage("Game not loaded", "Save file does not exist.");219 ShowMessage("Game not loaded", "Save files does not exist."); 216 220 } 217 221 … … 500 504 } 501 505 } 502 506 503 507 void previousid_Clicked() 504 508 { … … 594 598 } 595 599 public void rahatShow() 596 600 { 597 601 MessageDisplay.Add("Money:" + raha); 598 602 } … … 684 688 void Save() 685 689 { 686 SaveGame(pelitallennus.ToString()); 690 DataStorage.Save<List<Auto>>(autot, "autot.xml"); 691 DataStorage.Save<int>(ID, "intit.xml"); 692 DataStorage.Save<double>(raha, "doublet.xml"); 687 693 } 688 694 } -
2011/26/JuhoK/SFN_New/SFN/SFN/SFN/obj/x86/Debug/SFN.csproj.FileListAbsolute.txt
r2385 r2400 29 29 C:\Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\MenuBackround.xnb 30 30 C:\Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Arrow.xnb 31 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Blues\Car1.xnb 32 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Blues\Car2.xnb 33 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Blues\Car3.xnb 34 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Blues\Car4.xnb 35 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Greens\Car1.xnb 36 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Greens\Car2.xnb 37 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Greens\Car3.xnb 38 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Greens\Car4.xnb 39 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Reds\Car1.xnb 40 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Reds\Car2.xnb 41 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Reds\Car3.xnb 42 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Reds\Car4.xnb 43 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Whites\Car1.xnb 44 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Whites\Car2.xnb 45 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Whites\Car3.xnb 46 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Whites\Car4.xnb 47 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Yellows\Car1.xnb 48 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Yellows\Car2.xnb 49 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Yellows\Car3.xnb 50 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Yellows\Car4.xnb 51 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\MenuBackround.xnb 52 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Arrow.xnb 53 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\SFN.exe 54 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\SFN.pdb 55 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Jypeli4.dll 56 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Jypeli4.xml 57 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\obj\x86\Debug\ResolveAssemblyReference.cache 58 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\obj\x86\Debug\Microsoft.Xna.Framework.RuntimeProfile.txt 59 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\obj\x86\Debug\SFN.exe 60 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\obj\x86\Debug\SFN.pdb -
2011/26/JuhoK/SFN_New/SFN/SFN/SFNContent/obj/x86/Debug/ContentPipeline.xml
r2385 r2400 8 8 <Processor>TextureProcessor</Processor> 9 9 <Options>None</Options> 10 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Blues\Car1.xnb</Output>11 <Time>2011-0 6-30T22:08:49.469+03:00</Time>10 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Blues\Car1.xnb</Output> 11 <Time>2011-07-01T09:22:10.994784+03:00</Time> 12 12 </Item> 13 13 <Item> … … 17 17 <Processor>TextureProcessor</Processor> 18 18 <Options>None</Options> 19 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Blues\Car2.xnb</Output>20 <Time>2011-0 6-30T22:08:49.474+03:00</Time>19 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Blues\Car2.xnb</Output> 20 <Time>2011-07-01T09:22:10.994784+03:00</Time> 21 21 </Item> 22 22 <Item> … … 26 26 <Processor>TextureProcessor</Processor> 27 27 <Options>None</Options> 28 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Blues\Car3.xnb</Output>29 <Time>2011-0 6-30T22:08:49.479+03:00</Time>28 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Blues\Car3.xnb</Output> 29 <Time>2011-07-01T09:22:11.0416578+03:00</Time> 30 30 </Item> 31 31 <Item> … … 35 35 <Processor>TextureProcessor</Processor> 36 36 <Options>None</Options> 37 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Blues\Car4.xnb</Output>38 <Time>2011-0 6-30T22:08:49.484+03:00</Time>37 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Blues\Car4.xnb</Output> 38 <Time>2011-07-01T09:22:11.0885316+03:00</Time> 39 39 </Item> 40 40 <Item> … … 44 44 <Processor>TextureProcessor</Processor> 45 45 <Options>None</Options> 46 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Greens\Car1.xnb</Output>47 <Time>2011-0 6-30T22:08:49.491+03:00</Time>46 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Greens\Car1.xnb</Output> 47 <Time>2011-07-01T09:22:08.5104726+03:00</Time> 48 48 </Item> 49 49 <Item> … … 53 53 <Processor>TextureProcessor</Processor> 54 54 <Options>None</Options> 55 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Greens\Car2.xnb</Output>56 <Time>2011-0 6-30T22:08:49.495+03:00</Time>55 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Greens\Car2.xnb</Output> 56 <Time>2011-07-01T09:22:08.5417218+03:00</Time> 57 57 </Item> 58 58 <Item> … … 62 62 <Processor>TextureProcessor</Processor> 63 63 <Options>None</Options> 64 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Greens\Car3.xnb</Output>65 <Time>2011-0 6-30T22:08:49.5+03:00</Time>64 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Greens\Car3.xnb</Output> 65 <Time>2011-07-01T09:22:08.572971+03:00</Time> 66 66 </Item> 67 67 <Item> … … 71 71 <Processor>TextureProcessor</Processor> 72 72 <Options>None</Options> 73 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Greens\Car4.xnb</Output>74 <Time>2011-0 6-30T22:08:49.504+03:00</Time>73 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Greens\Car4.xnb</Output> 74 <Time>2011-07-01T09:22:08.6667186+03:00</Time> 75 75 </Item> 76 76 <Item> … … 80 80 <Processor>TextureProcessor</Processor> 81 81 <Options>None</Options> 82 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Reds\Car1.xnb</Output>83 <Time>2011-0 6-30T22:08:49.512+03:00</Time>82 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Reds\Car1.xnb</Output> 83 <Time>2011-07-01T09:22:12.8072376+03:00</Time> 84 84 </Item> 85 85 <Item> … … 89 89 <Processor>TextureProcessor</Processor> 90 90 <Options>None</Options> 91 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Reds\Car2.xnb</Output>92 <Time>2011-0 6-30T22:08:49.517+03:00</Time>91 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Reds\Car2.xnb</Output> 92 <Time>2011-07-01T09:22:12.8072376+03:00</Time> 93 93 </Item> 94 94 <Item> … … 98 98 <Processor>TextureProcessor</Processor> 99 99 <Options>None</Options> 100 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Reds\Car3.xnb</Output>101 <Time>2011-0 6-30T22:08:49.522+03:00</Time>100 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Reds\Car3.xnb</Output> 101 <Time>2011-07-01T09:22:12.8072376+03:00</Time> 102 102 </Item> 103 103 <Item> … … 107 107 <Processor>TextureProcessor</Processor> 108 108 <Options>None</Options> 109 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Reds\Car4.xnb</Output>110 <Time>2011-0 6-30T22:08:49.527+03:00</Time>109 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Reds\Car4.xnb</Output> 110 <Time>2011-07-01T09:22:12.8072376+03:00</Time> 111 111 </Item> 112 112 <Item> … … 116 116 <Processor>TextureProcessor</Processor> 117 117 <Options>None</Options> 118 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Whites\Car1.xnb</Output>119 <Time>2011-0 6-30T22:08:49.533+03:00</Time>118 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Whites\Car1.xnb</Output> 119 <Time>2011-07-01T09:22:09.1667058+03:00</Time> 120 120 </Item> 121 121 <Item> … … 125 125 <Processor>TextureProcessor</Processor> 126 126 <Options>None</Options> 127 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Whites\Car2.xnb</Output>128 <Time>2011-0 6-30T22:08:49.537+03:00</Time>127 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Whites\Car2.xnb</Output> 128 <Time>2011-07-01T09:22:09.1823304+03:00</Time> 129 129 </Item> 130 130 <Item> … … 134 134 <Processor>TextureProcessor</Processor> 135 135 <Options>None</Options> 136 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Whites\Car3.xnb</Output>137 <Time>2011-0 6-30T22:08:49.542+03:00</Time>136 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Whites\Car3.xnb</Output> 137 <Time>2011-07-01T09:22:09.197955+03:00</Time> 138 138 </Item> 139 139 <Item> … … 143 143 <Processor>TextureProcessor</Processor> 144 144 <Options>None</Options> 145 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Whites\Car4.xnb</Output>146 <Time>2011-0 6-30T22:08:49.547+03:00</Time>145 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Whites\Car4.xnb</Output> 146 <Time>2011-07-01T09:22:09.2604534+03:00</Time> 147 147 </Item> 148 148 <Item> … … 152 152 <Processor>TextureProcessor</Processor> 153 153 <Options>None</Options> 154 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Yellows\Car1.xnb</Output>155 <Time>2011-0 6-30T22:08:49.553+03:00</Time>154 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Yellows\Car1.xnb</Output> 155 <Time>2011-07-01T09:22:12.8541114+03:00</Time> 156 156 </Item> 157 157 <Item> … … 161 161 <Processor>TextureProcessor</Processor> 162 162 <Options>None</Options> 163 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Yellows\Car2.xnb</Output>164 <Time>2011-0 6-30T22:08:49.559+03:00</Time>163 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Yellows\Car2.xnb</Output> 164 <Time>2011-07-01T09:22:12.8541114+03:00</Time> 165 165 </Item> 166 166 <Item> … … 170 170 <Processor>TextureProcessor</Processor> 171 171 <Options>None</Options> 172 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Yellows\Car3.xnb</Output>173 <Time>2011-0 6-30T22:08:49.563+03:00</Time>172 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Yellows\Car3.xnb</Output> 173 <Time>2011-07-01T09:22:12.869736+03:00</Time> 174 174 </Item> 175 175 <Item> … … 179 179 <Processor>TextureProcessor</Processor> 180 180 <Options>None</Options> 181 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Yellows\Car4.xnb</Output>182 <Time>2011-0 6-30T22:08:49.568+03:00</Time>181 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Yellows\Car4.xnb</Output> 182 <Time>2011-07-01T09:22:12.869736+03:00</Time> 183 183 </Item> 184 184 <Item> … … 188 188 <Processor>TextureProcessor</Processor> 189 189 <Options>None</Options> 190 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\MenuBackround.xnb</Output>191 <Time>2011-0 6-30T22:10:37.511+03:00</Time>190 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\MenuBackround.xnb</Output> 191 <Time>2011-07-01T09:22:12.8853606+03:00</Time> 192 192 </Item> 193 193 <Item> … … 197 197 <Processor>TextureProcessor</Processor> 198 198 <Options>None</Options> 199 <Output>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\Arrow.xnb</Output>200 <Time>2011-07-01T0 0:00:27.9968+03:00</Time>199 <Output>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\Arrow.xnb</Output> 200 <Time>2011-07-01T09:22:12.9009852+03:00</Time> 201 201 </Item> 202 202 <BuildSuccessful>true</BuildSuccessful> … … 206 206 <BuildConfiguration>Debug</BuildConfiguration> 207 207 <CompressContent>false</CompressContent> 208 <RootDirectory>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFNContent\</RootDirectory>209 <LoggerRootDirectory>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\</LoggerRootDirectory>210 <IntermediateDirectory>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFNContent\obj\x86\Debug\</IntermediateDirectory>211 <OutputDirectory>C:\ Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFN\bin\x86\Debug\Content\</OutputDirectory>208 <RootDirectory>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFNContent\</RootDirectory> 209 <LoggerRootDirectory>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\</LoggerRootDirectory> 210 <IntermediateDirectory>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFNContent\obj\x86\Debug\</IntermediateDirectory> 211 <OutputDirectory>C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFN\bin\x86\Debug\Content\</OutputDirectory> 212 212 </Settings> 213 213 <Assemblies> 214 214 <Assembly> 215 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.XImporter.dll</Key>216 <Value>2010-08-23T12:41:18+03:00</Value> 217 </Assembly> 218 <Assembly> 219 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.VideoImporters.dll</Key>220 <Value>2010-08-23T12:41:18+03:00</Value> 221 </Assembly> 222 <Assembly> 223 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.TextureImporter.dll</Key>224 <Value>2010-08-23T12:41:18+03:00</Value> 225 </Assembly> 226 <Assembly> 227 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.FBXImporter.dll</Key>228 <Value>2010-08-23T12:41:18+03:00</Value> 229 </Assembly> 230 <Assembly> 231 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.EffectImporter.dll</Key>232 <Value>2010-08-23T12:41:18+03:00</Value> 233 </Assembly> 234 <Assembly> 235 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.AudioImporters.dll</Key>236 <Value>2010-08-23T12:41:18+03:00</Value> 237 </Assembly> 238 <Assembly> 239 <Key>C:\W indows\Microsoft.Net\assembly\GAC_32\Microsoft.Xna.Framework.Content.Pipeline\v4.0_4.0.0.0__842cf8be1de50553\Microsoft.Xna.Framework.Content.Pipeline.dll</Key>240 <Value>2011-06-2 7T19:07:01.563+03:00</Value>215 <Key>C:\Program Files\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.XImporter.dll</Key> 216 <Value>2010-08-23T12:41:18+03:00</Value> 217 </Assembly> 218 <Assembly> 219 <Key>C:\Program Files\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.VideoImporters.dll</Key> 220 <Value>2010-08-23T12:41:18+03:00</Value> 221 </Assembly> 222 <Assembly> 223 <Key>C:\Program Files\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.TextureImporter.dll</Key> 224 <Value>2010-08-23T12:41:18+03:00</Value> 225 </Assembly> 226 <Assembly> 227 <Key>C:\Program Files\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.FBXImporter.dll</Key> 228 <Value>2010-08-23T12:41:18+03:00</Value> 229 </Assembly> 230 <Assembly> 231 <Key>C:\Program Files\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.EffectImporter.dll</Key> 232 <Value>2010-08-23T12:41:18+03:00</Value> 233 </Assembly> 234 <Assembly> 235 <Key>C:\Program Files\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.AudioImporters.dll</Key> 236 <Value>2010-08-23T12:41:18+03:00</Value> 237 </Assembly> 238 <Assembly> 239 <Key>C:\WINNT\Microsoft.Net\assembly\GAC_32\Microsoft.Xna.Framework.Content.Pipeline\v4.0_4.0.0.0__842cf8be1de50553\Microsoft.Xna.Framework.Content.Pipeline.dll</Key> 240 <Value>2011-06-29T10:33:21.3518818+03:00</Value> 241 241 </Assembly> 242 242 </Assemblies> -
2011/26/JuhoK/SFN_New/SFN/SFN/SFNContent/obj/x86/Debug/SFNContent.contentproj.FileListAbsolute.txt
r2385 r2400 1 1 C:\Users\Linus\Ohjelmointi\SpeedForNeed\SFN\SFN\SFN\SFNContent\obj\x86\Debug\ResolveAssemblyReference.cache 2 C:\MyTemp\JuhoK\SFN_New\SFN\SFN\SFNContent\obj\x86\Debug\ResolveAssemblyReference.cache
Note: See TracChangeset
for help on using the changeset viewer.