mirror of
https://github.com/Alvin-Zilverstand/ict-algemeen-opdrachten.git
synced 2026-03-06 13:23:58 +01:00
Update assembly informational versions and adjust confetti position type in Gokspel
This commit is contained in:
@@ -1,7 +1,6 @@
|
|||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// This code was generated by a tool.
|
// 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
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
// the code is regenerated.
|
// the code is regenerated.
|
||||||
@@ -14,7 +13,7 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Bankrekening")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Bankrekening")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[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.AssemblyProductAttribute("Bankrekening")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("Bankrekening")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("Bankrekening")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
00334611bd0da787616966abb971669e688762294a090af403b8cf7c6b9ee0c8
|
08572d554bbbc389ae2f4ed900a3f1497ebf89522f07abc1a398a85d1465b35c
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// This code was generated by a tool.
|
// 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
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
// the code is regenerated.
|
// the code is regenerated.
|
||||||
@@ -14,7 +13,7 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Calc")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Calc")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[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.AssemblyProductAttribute("Calc")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("Calc")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("Calc")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
f7842965e8c4d5b3b4e3575b121019fd1f9cf70d66f3e81d47a71a0b1836aa19
|
3a3bbd45364777d632e26172c1a11f5ac194cf5d902d357fb0da9b376590343b
|
||||||
|
|||||||
@@ -143,7 +143,7 @@ class Program : Form
|
|||||||
|
|
||||||
class Confetti
|
class Confetti
|
||||||
{
|
{
|
||||||
public PointF Position;
|
public Point Position;
|
||||||
public float SpeedY;
|
public float SpeedY;
|
||||||
public float SpeedX;
|
public float SpeedX;
|
||||||
public float Size;
|
public float Size;
|
||||||
@@ -152,7 +152,7 @@ class Confetti
|
|||||||
public Confetti(Random random, Size clientSize)
|
public Confetti(Random random, Size clientSize)
|
||||||
{
|
{
|
||||||
// Initialiseer de eigenschappen van de confetti
|
// 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);
|
SpeedY = (float)(random.NextDouble() * 2 + 1);
|
||||||
SpeedX = (float)(random.NextDouble() * 2 - 1);
|
SpeedX = (float)(random.NextDouble() * 2 - 1);
|
||||||
Size = random.Next(5, 10);
|
Size = random.Next(5, 10);
|
||||||
@@ -162,7 +162,7 @@ class Confetti
|
|||||||
public void Update()
|
public void Update()
|
||||||
{
|
{
|
||||||
// Update de positie van de confetti en pas zwaartekracht toe
|
// 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
|
SpeedY += 0.1f; // zwaartekracht effect
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -13,7 +13,7 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Gokspel")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Gokspel")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[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.AssemblyProductAttribute("Gokspel")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("Gokspel")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("Gokspel")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
75bfb41aebe2f64e10a291cd7a712f1e0398e3071b24cd5be354fd3399181b39
|
28fdce06b0e1d5c602de1b3596be8b5e1a37de0759cd6da6601b06f720f7fe71
|
||||||
|
|||||||
@@ -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.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\Gokspel.genruntimeconfig.cache
|
||||||
C:\Users\steen\Desktop\Alvin\ict-algemeen-opdrachten\Csharp\Gokspel\obj\Debug\net9.0-windows\ref\Gokspel.dll
|
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
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
cd6e305ea58b32f5fb6ebb6b6a9ec74b86ff1df683d887884c62b90a98adbdf8
|
913e754d0bc5a3ccbae429d11ca6074ad0aa43602a9bc0bd26ec24e9c35ec874
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
{"documents":{"C:\\Users\\steen\\Desktop\\Alvin\\ict-algemeen-opdrachten\\*":"https://raw.githubusercontent.com/Alvin-Zilverstand/ict-algemeen-opdrachten/4a081ae681d5fbc5853e02abd648f1d6dff7cdd2/*"}}
|
{"documents":{"C:\\Users\\alvin\\Desktop\\coding\\ict-algemeen-opdrachten\\*":"https://raw.githubusercontent.com/Alvin-Zilverstand/ict-algemeen-opdrachten/b9bf8b131a0470a81b7ac08f54b03cca04bcaed8/*"}}
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,7 +1,6 @@
|
|||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// This code was generated by a tool.
|
// 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
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
// the code is regenerated.
|
// the code is regenerated.
|
||||||
@@ -14,7 +13,7 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("woordenboek")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("woordenboek")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[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.AssemblyProductAttribute("woordenboek")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("woordenboek")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("woordenboek")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
bf11784baa75d8eba5a58523b5a8ae8a525905a6c2aae32f547ab55eb69b27d7
|
2d191353c5288a0bdf0585fba6ffb242ba6eae652ab98bbb43791d33b1c25b1c
|
||||||
|
|||||||
Reference in New Issue
Block a user