diff --git a/Csharp/Bankrekening/obj/Debug/net9.0-windows/Bankrekening.AssemblyInfo.cs b/Csharp/Bankrekening/obj/Debug/net9.0-windows/Bankrekening.AssemblyInfo.cs index fd8c032..c9c9a5c 100644 --- a/Csharp/Bankrekening/obj/Debug/net9.0-windows/Bankrekening.AssemblyInfo.cs +++ b/Csharp/Bankrekening/obj/Debug/net9.0-windows/Bankrekening.AssemblyInfo.cs @@ -1,7 +1,6 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -14,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Bankrekening")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+50a906a9a5328a5c38febc44e22268196939436c")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b9bf8b131a0470a81b7ac08f54b03cca04bcaed8")] [assembly: System.Reflection.AssemblyProductAttribute("Bankrekening")] [assembly: System.Reflection.AssemblyTitleAttribute("Bankrekening")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Csharp/Bankrekening/obj/Debug/net9.0-windows/Bankrekening.AssemblyInfoInputs.cache b/Csharp/Bankrekening/obj/Debug/net9.0-windows/Bankrekening.AssemblyInfoInputs.cache index f798bc5..fe4a09f 100644 --- a/Csharp/Bankrekening/obj/Debug/net9.0-windows/Bankrekening.AssemblyInfoInputs.cache +++ b/Csharp/Bankrekening/obj/Debug/net9.0-windows/Bankrekening.AssemblyInfoInputs.cache @@ -1 +1 @@ -00334611bd0da787616966abb971669e688762294a090af403b8cf7c6b9ee0c8 +08572d554bbbc389ae2f4ed900a3f1497ebf89522f07abc1a398a85d1465b35c diff --git a/Csharp/Calc/obj/Debug/net9.0/Calc.AssemblyInfo.cs b/Csharp/Calc/obj/Debug/net9.0/Calc.AssemblyInfo.cs index 539c7ee..1035178 100644 --- a/Csharp/Calc/obj/Debug/net9.0/Calc.AssemblyInfo.cs +++ b/Csharp/Calc/obj/Debug/net9.0/Calc.AssemblyInfo.cs @@ -1,7 +1,6 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -14,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Calc")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+50a906a9a5328a5c38febc44e22268196939436c")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b9bf8b131a0470a81b7ac08f54b03cca04bcaed8")] [assembly: System.Reflection.AssemblyProductAttribute("Calc")] [assembly: System.Reflection.AssemblyTitleAttribute("Calc")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Csharp/Calc/obj/Debug/net9.0/Calc.AssemblyInfoInputs.cache b/Csharp/Calc/obj/Debug/net9.0/Calc.AssemblyInfoInputs.cache index 8d01856..80315f9 100644 --- a/Csharp/Calc/obj/Debug/net9.0/Calc.AssemblyInfoInputs.cache +++ b/Csharp/Calc/obj/Debug/net9.0/Calc.AssemblyInfoInputs.cache @@ -1 +1 @@ -f7842965e8c4d5b3b4e3575b121019fd1f9cf70d66f3e81d47a71a0b1836aa19 +3a3bbd45364777d632e26172c1a11f5ac194cf5d902d357fb0da9b376590343b diff --git a/Csharp/Gokspel/Program.cs b/Csharp/Gokspel/Program.cs index 718c7c3..6665502 100644 --- a/Csharp/Gokspel/Program.cs +++ b/Csharp/Gokspel/Program.cs @@ -143,7 +143,7 @@ class Program : Form class Confetti { - public PointF Position; + public Point Position; public float SpeedY; public float SpeedX; public float Size; @@ -152,7 +152,7 @@ class Confetti public Confetti(Random random, Size clientSize) { // Initialiseer de eigenschappen van de confetti - Position = new PointF(random.Next(clientSize.Width), random.Next(clientSize.Height)); + Position = new Point(random.Next(clientSize.Width), random.Next(clientSize.Height)); SpeedY = (float)(random.NextDouble() * 2 + 1); SpeedX = (float)(random.NextDouble() * 2 - 1); Size = random.Next(5, 10); @@ -162,7 +162,7 @@ class Confetti public void Update() { // Update de positie van de confetti en pas zwaartekracht toe - Position = new PointF(Position.X + SpeedX, Position.Y + SpeedY); + Position = new Point((int)(Position.X + SpeedX), (int)(Position.Y + SpeedY)); SpeedY += 0.1f; // zwaartekracht effect } } diff --git a/Csharp/Gokspel/bin/Debug/net9.0-windows/Gokspel.dll b/Csharp/Gokspel/bin/Debug/net9.0-windows/Gokspel.dll index ef64684..a921768 100644 Binary files a/Csharp/Gokspel/bin/Debug/net9.0-windows/Gokspel.dll and b/Csharp/Gokspel/bin/Debug/net9.0-windows/Gokspel.dll differ diff --git a/Csharp/Gokspel/bin/Debug/net9.0-windows/Gokspel.exe b/Csharp/Gokspel/bin/Debug/net9.0-windows/Gokspel.exe index 092abba..51fa6fd 100644 Binary files a/Csharp/Gokspel/bin/Debug/net9.0-windows/Gokspel.exe and b/Csharp/Gokspel/bin/Debug/net9.0-windows/Gokspel.exe differ diff --git a/Csharp/Gokspel/bin/Debug/net9.0-windows/Gokspel.pdb b/Csharp/Gokspel/bin/Debug/net9.0-windows/Gokspel.pdb index f1622a4..48de3b5 100644 Binary files a/Csharp/Gokspel/bin/Debug/net9.0-windows/Gokspel.pdb and b/Csharp/Gokspel/bin/Debug/net9.0-windows/Gokspel.pdb differ diff --git a/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.AssemblyInfo.cs b/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.AssemblyInfo.cs index 052f104..a235ce0 100644 --- a/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.AssemblyInfo.cs +++ b/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Gokspel")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d9d36fdc60c60ae9c35165903a637a145aa18846")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b9bf8b131a0470a81b7ac08f54b03cca04bcaed8")] [assembly: System.Reflection.AssemblyProductAttribute("Gokspel")] [assembly: System.Reflection.AssemblyTitleAttribute("Gokspel")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.AssemblyInfoInputs.cache b/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.AssemblyInfoInputs.cache index 01e1912..2e09ed3 100644 --- a/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.AssemblyInfoInputs.cache +++ b/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.AssemblyInfoInputs.cache @@ -1 +1 @@ -75bfb41aebe2f64e10a291cd7a712f1e0398e3071b24cd5be354fd3399181b39 +28fdce06b0e1d5c602de1b3596be8b5e1a37de0759cd6da6601b06f720f7fe71 diff --git a/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.csproj.FileListAbsolute.txt b/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.csproj.FileListAbsolute.txt index 1bec544..1edd310 100644 --- a/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.csproj.FileListAbsolute.txt +++ b/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.csproj.FileListAbsolute.txt @@ -13,3 +13,18 @@ C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Gokspel\obj\Debug\ne C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Gokspel\obj\Debug\net9.0-windows\Gokspel.pdb C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Gokspel\obj\Debug\net9.0-windows\Gokspel.genruntimeconfig.cache C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Gokspel\obj\Debug\net9.0-windows\ref\Gokspel.dll +C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Gokspel\bin\Debug\net9.0-windows\Gokspel.exe +C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Gokspel\bin\Debug\net9.0-windows\Gokspel.deps.json +C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Gokspel\bin\Debug\net9.0-windows\Gokspel.runtimeconfig.json +C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Gokspel\bin\Debug\net9.0-windows\Gokspel.dll +C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Gokspel\bin\Debug\net9.0-windows\Gokspel.pdb +C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Gokspel\obj\Debug\net9.0-windows\Gokspel.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Gokspel\obj\Debug\net9.0-windows\Gokspel.AssemblyInfoInputs.cache +C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Gokspel\obj\Debug\net9.0-windows\Gokspel.AssemblyInfo.cs +C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Gokspel\obj\Debug\net9.0-windows\Gokspel.csproj.CoreCompileInputs.cache +C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Gokspel\obj\Debug\net9.0-windows\Gokspel.sourcelink.json +C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Gokspel\obj\Debug\net9.0-windows\Gokspel.dll +C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Gokspel\obj\Debug\net9.0-windows\refint\Gokspel.dll +C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Gokspel\obj\Debug\net9.0-windows\Gokspel.pdb +C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Gokspel\obj\Debug\net9.0-windows\Gokspel.genruntimeconfig.cache +C:\Users\alvin\Desktop\coding\ict-algemeen-opdrachten\Csharp\Gokspel\obj\Debug\net9.0-windows\ref\Gokspel.dll diff --git a/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.dll b/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.dll index ef64684..a921768 100644 Binary files a/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.dll and b/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.dll differ diff --git a/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.genruntimeconfig.cache b/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.genruntimeconfig.cache index 05f8238..bd8a648 100644 --- a/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.genruntimeconfig.cache +++ b/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.genruntimeconfig.cache @@ -1 +1 @@ -cd6e305ea58b32f5fb6ebb6b6a9ec74b86ff1df683d887884c62b90a98adbdf8 +913e754d0bc5a3ccbae429d11ca6074ad0aa43602a9bc0bd26ec24e9c35ec874 diff --git a/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.pdb b/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.pdb index f1622a4..48de3b5 100644 Binary files a/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.pdb and b/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.pdb differ diff --git a/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.sourcelink.json b/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.sourcelink.json index d678b21..a7a2f98 100644 --- a/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.sourcelink.json +++ b/Csharp/Gokspel/obj/Debug/net9.0-windows/Gokspel.sourcelink.json @@ -1 +1 @@ -{"documents":{"C:\\Users\\steen\\Desktop\\Alvin\\ict-algemeen-opdrachten\\*":"https://raw.githubusercontent.com/Alvin-Zilverstand/ict-algemeen-opdrachten/4a081ae681d5fbc5853e02abd648f1d6dff7cdd2/*"}} \ No newline at end of file +{"documents":{"C:\\Users\\alvin\\Desktop\\coding\\ict-algemeen-opdrachten\\*":"https://raw.githubusercontent.com/Alvin-Zilverstand/ict-algemeen-opdrachten/b9bf8b131a0470a81b7ac08f54b03cca04bcaed8/*"}} \ No newline at end of file diff --git a/Csharp/Gokspel/obj/Debug/net9.0-windows/apphost.exe b/Csharp/Gokspel/obj/Debug/net9.0-windows/apphost.exe index 092abba..51fa6fd 100644 Binary files a/Csharp/Gokspel/obj/Debug/net9.0-windows/apphost.exe and b/Csharp/Gokspel/obj/Debug/net9.0-windows/apphost.exe differ diff --git a/Csharp/Gokspel/obj/Debug/net9.0-windows/ref/Gokspel.dll b/Csharp/Gokspel/obj/Debug/net9.0-windows/ref/Gokspel.dll index 5a2048e..bfac0ac 100644 Binary files a/Csharp/Gokspel/obj/Debug/net9.0-windows/ref/Gokspel.dll and b/Csharp/Gokspel/obj/Debug/net9.0-windows/ref/Gokspel.dll differ diff --git a/Csharp/Gokspel/obj/Debug/net9.0-windows/refint/Gokspel.dll b/Csharp/Gokspel/obj/Debug/net9.0-windows/refint/Gokspel.dll index 5a2048e..bfac0ac 100644 Binary files a/Csharp/Gokspel/obj/Debug/net9.0-windows/refint/Gokspel.dll and b/Csharp/Gokspel/obj/Debug/net9.0-windows/refint/Gokspel.dll differ diff --git a/Csharp/Woordenboek/obj/Debug/net9.0-windows/woordenboek.AssemblyInfo.cs b/Csharp/Woordenboek/obj/Debug/net9.0-windows/woordenboek.AssemblyInfo.cs index f9f737e..6dbedee 100644 --- a/Csharp/Woordenboek/obj/Debug/net9.0-windows/woordenboek.AssemblyInfo.cs +++ b/Csharp/Woordenboek/obj/Debug/net9.0-windows/woordenboek.AssemblyInfo.cs @@ -1,7 +1,6 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -14,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("woordenboek")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+50a906a9a5328a5c38febc44e22268196939436c")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b9bf8b131a0470a81b7ac08f54b03cca04bcaed8")] [assembly: System.Reflection.AssemblyProductAttribute("woordenboek")] [assembly: System.Reflection.AssemblyTitleAttribute("woordenboek")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Csharp/Woordenboek/obj/Debug/net9.0-windows/woordenboek.AssemblyInfoInputs.cache b/Csharp/Woordenboek/obj/Debug/net9.0-windows/woordenboek.AssemblyInfoInputs.cache index 1bece02..2b2467c 100644 --- a/Csharp/Woordenboek/obj/Debug/net9.0-windows/woordenboek.AssemblyInfoInputs.cache +++ b/Csharp/Woordenboek/obj/Debug/net9.0-windows/woordenboek.AssemblyInfoInputs.cache @@ -1 +1 @@ -bf11784baa75d8eba5a58523b5a8ae8a525905a6c2aae32f547ab55eb69b27d7 +2d191353c5288a0bdf0585fba6ffb242ba6eae652ab98bbb43791d33b1c25b1c