diff --git a/Maze-WPF/Logica/Ball.cs b/Maze-WPF/Logica/Ball.cs
new file mode 100644
index 0000000..df317c8
--- /dev/null
+++ b/Maze-WPF/Logica/Ball.cs
@@ -0,0 +1,24 @@
+using System.Drawing;
+
+namespace Global {
+ public class Ball {
+ public double x;
+ public double y;
+ public double size {
+ get;
+ }
+ public Color color;
+
+ public Ball() {
+ this.x = 0;
+ this.y = 0;
+ this.size = 0.4;
+ this.color = Color.Blue;
+ }
+
+ public void SetLocation(double x, double y) {
+ this.x = x;
+ this.y = y;
+ }
+ }
+}
diff --git a/Maze-WPF/Logica/Cell.cs b/Maze-WPF/Logica/Cell.cs
new file mode 100644
index 0000000..4c3ca73
--- /dev/null
+++ b/Maze-WPF/Logica/Cell.cs
@@ -0,0 +1,63 @@
+using System.Drawing;
+
+namespace Logica {
+ public class Cell {
+ public int id;
+ public int x;
+ public int y;
+ public bool[] walls = new bool[4];
+ public bool visited = false;
+ public bool isWall = false;
+ public bool isBacktracked = false;
+ public Color color;
+ // ____ <-0
+ // |<-3 | <-1
+ // | |
+ // ---- <-2
+ public Cell() {
+ }
+ public Cell(int id, Color color) {
+ this.color = color;
+ this.id = id;
+
+ }
+ public Cell(int id, int x, int y, bool[] muren) {
+ this.id = id;
+ this.x = x;
+ this.y = y;
+ this.walls = muren;
+ }
+ public int getId() {
+ return this.id;
+ }
+ public void setLocation(int x, int y) {
+ this.x = x;
+ this.y = y;
+ }
+ public void setWalls(bool bool0, bool bool1, bool bool2, bool bool3) {
+ this.walls[0] = bool0;
+ this.walls[1] = bool1;
+ this.walls[2] = bool2;
+ this.walls[3] = bool3;
+ }
+
+ public void SetDefaultWalls() {
+ this.walls[0] = false;
+ this.walls[1] = false;
+ this.walls[2] = false;
+ this.walls[3] = false;
+ }
+
+ public void SetVisited(bool visited) {
+ this.visited = visited;
+ }
+ public void SetWall(bool wall) {
+ this.isWall = true;
+ }
+ public void SetIsBacktracked(bool isBacktracked) {
+ this.isBacktracked = isBacktracked;
+ }
+
+
+ }
+}
diff --git a/Maze-WPF/Logica/Enums.cs b/Maze-WPF/Logica/Enums.cs
new file mode 100644
index 0000000..1c58304
--- /dev/null
+++ b/Maze-WPF/Logica/Enums.cs
@@ -0,0 +1,9 @@
+namespace Global {
+ public enum Direction {
+ up,
+ down,
+ left,
+ right
+ }
+
+}
diff --git a/Maze-WPF/Logica/Global.csproj b/Maze-WPF/Logica/Global.csproj
new file mode 100644
index 0000000..4658cbf
--- /dev/null
+++ b/Maze-WPF/Logica/Global.csproj
@@ -0,0 +1,9 @@
+
+
+
+ net7.0
+ enable
+ enable
+
+
+
diff --git a/Maze-WPF/Logica/Maze.cs b/Maze-WPF/Logica/Maze.cs
new file mode 100644
index 0000000..40d7203
--- /dev/null
+++ b/Maze-WPF/Logica/Maze.cs
@@ -0,0 +1,43 @@
+using Global;
+using System.Drawing;
+
+namespace Logica {
+ public class Maze {
+ public int height;
+ public int length;
+ public Cell endCell;
+ public Cell[,] cels;
+ public Ball ball {
+ get;
+ set;
+ }
+
+ public Maze(int height, int length) {
+ this.height = height;
+ this.length = length;
+ cels = new Cell[length, height];
+ }
+
+ ///
+ /// Generate empty cell grid
+ ///
+ ///
+ public void GenerateGrid(Color color) {
+ int idCount = 0;
+ if (height == 0 || length == 0) {
+ throw new Exception("Maze size can not be 0!");
+ }
+ for (int i = 0; i < height; i++) {
+
+ for (int j = 0; j < length; j++) {
+ Cell cell = new Cell(idCount, color);
+ cell.SetDefaultWalls();
+ cels[j, i] = cell;
+ idCount++;
+ }
+ }
+
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/Maze-WPF/Logica/bin/Debug/net7.0/Global.deps.json b/Maze-WPF/Logica/bin/Debug/net7.0/Global.deps.json
new file mode 100644
index 0000000..59afe49
--- /dev/null
+++ b/Maze-WPF/Logica/bin/Debug/net7.0/Global.deps.json
@@ -0,0 +1,23 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v7.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v7.0": {
+ "Global/1.0.0": {
+ "runtime": {
+ "Global.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Global/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/Maze-WPF/Logica/bin/Debug/net7.0/Global.dll b/Maze-WPF/Logica/bin/Debug/net7.0/Global.dll
new file mode 100644
index 0000000..d70d2ec
Binary files /dev/null and b/Maze-WPF/Logica/bin/Debug/net7.0/Global.dll differ
diff --git a/Maze-WPF/Logica/bin/Debug/net7.0/Global.pdb b/Maze-WPF/Logica/bin/Debug/net7.0/Global.pdb
new file mode 100644
index 0000000..63a4af0
Binary files /dev/null and b/Maze-WPF/Logica/bin/Debug/net7.0/Global.pdb differ
diff --git a/Maze-WPF/Logica/bin/Debug/net7.0/Logica.deps.json b/Maze-WPF/Logica/bin/Debug/net7.0/Logica.deps.json
new file mode 100644
index 0000000..5ee4d28
--- /dev/null
+++ b/Maze-WPF/Logica/bin/Debug/net7.0/Logica.deps.json
@@ -0,0 +1,23 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v7.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v7.0": {
+ "Logica/1.0.0": {
+ "runtime": {
+ "Logica.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Logica/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/Maze-WPF/Logica/bin/Debug/net7.0/Logica.dll b/Maze-WPF/Logica/bin/Debug/net7.0/Logica.dll
new file mode 100644
index 0000000..961f9c1
Binary files /dev/null and b/Maze-WPF/Logica/bin/Debug/net7.0/Logica.dll differ
diff --git a/Maze-WPF/Logica/bin/Debug/net7.0/Logica.pdb b/Maze-WPF/Logica/bin/Debug/net7.0/Logica.pdb
new file mode 100644
index 0000000..0c3bc4e
Binary files /dev/null and b/Maze-WPF/Logica/bin/Debug/net7.0/Logica.pdb differ
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Global.AssemblyInfo.cs b/Maze-WPF/Logica/obj/Debug/net7.0/Global.AssemblyInfo.cs
new file mode 100644
index 0000000..eec0ac6
--- /dev/null
+++ b/Maze-WPF/Logica/obj/Debug/net7.0/Global.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// 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.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Global")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("Global")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Global")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Global.AssemblyInfoInputs.cache b/Maze-WPF/Logica/obj/Debug/net7.0/Global.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..19d39b2
--- /dev/null
+++ b/Maze-WPF/Logica/obj/Debug/net7.0/Global.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+ae923df3beea84e23568f73b961f21d5e602432f
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Global.GeneratedMSBuildEditorConfig.editorconfig b/Maze-WPF/Logica/obj/Debug/net7.0/Global.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..c4f21a4
--- /dev/null
+++ b/Maze-WPF/Logica/obj/Debug/net7.0/Global.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,11 @@
+is_global = true
+build_property.TargetFramework = net7.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = Global
+build_property.ProjectDir = C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Global.GlobalUsings.g.cs b/Maze-WPF/Logica/obj/Debug/net7.0/Global.GlobalUsings.g.cs
new file mode 100644
index 0000000..ac22929
--- /dev/null
+++ b/Maze-WPF/Logica/obj/Debug/net7.0/Global.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Global.assets.cache b/Maze-WPF/Logica/obj/Debug/net7.0/Global.assets.cache
new file mode 100644
index 0000000..5caac7f
Binary files /dev/null and b/Maze-WPF/Logica/obj/Debug/net7.0/Global.assets.cache differ
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Global.csproj.AssemblyReference.cache b/Maze-WPF/Logica/obj/Debug/net7.0/Global.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..0758ba3
Binary files /dev/null and b/Maze-WPF/Logica/obj/Debug/net7.0/Global.csproj.AssemblyReference.cache differ
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Global.csproj.BuildWithSkipAnalyzers b/Maze-WPF/Logica/obj/Debug/net7.0/Global.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Global.csproj.CoreCompileInputs.cache b/Maze-WPF/Logica/obj/Debug/net7.0/Global.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..ab5fd19
--- /dev/null
+++ b/Maze-WPF/Logica/obj/Debug/net7.0/Global.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+8e7aacf4cb40f0eed50a0052c33cbd9ff8483e03
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Global.csproj.FileListAbsolute.txt b/Maze-WPF/Logica/obj/Debug/net7.0/Global.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..9b007ae
--- /dev/null
+++ b/Maze-WPF/Logica/obj/Debug/net7.0/Global.csproj.FileListAbsolute.txt
@@ -0,0 +1,12 @@
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\bin\Debug\net7.0\Global.deps.json
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\bin\Debug\net7.0\Global.dll
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\bin\Debug\net7.0\Global.pdb
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Global.csproj.AssemblyReference.cache
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Global.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Global.AssemblyInfoInputs.cache
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Global.AssemblyInfo.cs
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Global.csproj.CoreCompileInputs.cache
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Global.dll
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\refint\Global.dll
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Global.pdb
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\ref\Global.dll
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Global.dll b/Maze-WPF/Logica/obj/Debug/net7.0/Global.dll
new file mode 100644
index 0000000..d70d2ec
Binary files /dev/null and b/Maze-WPF/Logica/obj/Debug/net7.0/Global.dll differ
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Global.pdb b/Maze-WPF/Logica/obj/Debug/net7.0/Global.pdb
new file mode 100644
index 0000000..63a4af0
Binary files /dev/null and b/Maze-WPF/Logica/obj/Debug/net7.0/Global.pdb differ
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Logica.AssemblyInfo.cs b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.AssemblyInfo.cs
new file mode 100644
index 0000000..f95d6e2
--- /dev/null
+++ b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// 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.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Logica")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("Logica")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Logica")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Logica.AssemblyInfoInputs.cache b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..32085be
--- /dev/null
+++ b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+559139bcad75bc699883210d21815f3a7b66c208
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Logica.GeneratedMSBuildEditorConfig.editorconfig b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..efb0310
--- /dev/null
+++ b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,11 @@
+is_global = true
+build_property.TargetFramework = net7.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = Logica
+build_property.ProjectDir = C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Logica.GlobalUsings.g.cs b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.GlobalUsings.g.cs
new file mode 100644
index 0000000..ac22929
--- /dev/null
+++ b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Logica.assets.cache b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.assets.cache
new file mode 100644
index 0000000..28f79c5
Binary files /dev/null and b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.assets.cache differ
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Logica.csproj.AssemblyReference.cache b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..0758ba3
Binary files /dev/null and b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.csproj.AssemblyReference.cache differ
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Logica.csproj.BuildWithSkipAnalyzers b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Logica.csproj.CoreCompileInputs.cache b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..e53dd60
--- /dev/null
+++ b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+96cc4b12c389b1571616fbce3378fd5201462376
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Logica.csproj.FileListAbsolute.txt b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..7edd95e
--- /dev/null
+++ b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.csproj.FileListAbsolute.txt
@@ -0,0 +1,12 @@
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\bin\Debug\net7.0\Logica.deps.json
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\bin\Debug\net7.0\Logica.dll
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\bin\Debug\net7.0\Logica.pdb
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Logica.csproj.AssemblyReference.cache
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Logica.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Logica.AssemblyInfoInputs.cache
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Logica.AssemblyInfo.cs
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Logica.csproj.CoreCompileInputs.cache
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Logica.dll
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\refint\Logica.dll
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Logica.pdb
+C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\ref\Logica.dll
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Logica.dll b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.dll
new file mode 100644
index 0000000..961f9c1
Binary files /dev/null and b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.dll differ
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/Logica.pdb b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.pdb
new file mode 100644
index 0000000..0c3bc4e
Binary files /dev/null and b/Maze-WPF/Logica/obj/Debug/net7.0/Logica.pdb differ
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/ref/Global.dll b/Maze-WPF/Logica/obj/Debug/net7.0/ref/Global.dll
new file mode 100644
index 0000000..58db1eb
Binary files /dev/null and b/Maze-WPF/Logica/obj/Debug/net7.0/ref/Global.dll differ
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/ref/Logica.dll b/Maze-WPF/Logica/obj/Debug/net7.0/ref/Logica.dll
new file mode 100644
index 0000000..4ad7568
Binary files /dev/null and b/Maze-WPF/Logica/obj/Debug/net7.0/ref/Logica.dll differ
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/refint/Global.dll b/Maze-WPF/Logica/obj/Debug/net7.0/refint/Global.dll
new file mode 100644
index 0000000..58db1eb
Binary files /dev/null and b/Maze-WPF/Logica/obj/Debug/net7.0/refint/Global.dll differ
diff --git a/Maze-WPF/Logica/obj/Debug/net7.0/refint/Logica.dll b/Maze-WPF/Logica/obj/Debug/net7.0/refint/Logica.dll
new file mode 100644
index 0000000..4ad7568
Binary files /dev/null and b/Maze-WPF/Logica/obj/Debug/net7.0/refint/Logica.dll differ
diff --git a/Maze-WPF/Logica/obj/Global.csproj.nuget.dgspec.json b/Maze-WPF/Logica/obj/Global.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..f076a06
--- /dev/null
+++ b/Maze-WPF/Logica/obj/Global.csproj.nuget.dgspec.json
@@ -0,0 +1,63 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Global.csproj": {}
+ },
+ "projects": {
+ "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Global.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Global.csproj",
+ "projectName": "Global",
+ "projectPath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Global.csproj",
+ "packagesPath": "C:\\Users\\ruben\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\ruben\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net7.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net7.0": {
+ "targetAlias": "net7.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net7.0": {
+ "targetAlias": "net7.0",
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Maze-WPF/Logica/obj/Global.csproj.nuget.g.props b/Maze-WPF/Logica/obj/Global.csproj.nuget.g.props
new file mode 100644
index 0000000..8b1ca55
--- /dev/null
+++ b/Maze-WPF/Logica/obj/Global.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\ruben\.nuget\packages\
+ PackageReference
+ 6.5.0
+
+
+
+
+
\ No newline at end of file
diff --git a/Maze-WPF/Logica/obj/Global.csproj.nuget.g.targets b/Maze-WPF/Logica/obj/Global.csproj.nuget.g.targets
new file mode 100644
index 0000000..35a7576
--- /dev/null
+++ b/Maze-WPF/Logica/obj/Global.csproj.nuget.g.targets
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/Maze-WPF/Logica/obj/Logica.csproj.nuget.dgspec.json b/Maze-WPF/Logica/obj/Logica.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..061afc4
--- /dev/null
+++ b/Maze-WPF/Logica/obj/Logica.csproj.nuget.dgspec.json
@@ -0,0 +1,63 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Logica.csproj": {}
+ },
+ "projects": {
+ "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Logica.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Logica.csproj",
+ "projectName": "Logica",
+ "projectPath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Logica.csproj",
+ "packagesPath": "C:\\Users\\ruben\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\ruben\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net7.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net7.0": {
+ "targetAlias": "net7.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net7.0": {
+ "targetAlias": "net7.0",
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Maze-WPF/Logica/obj/Logica.csproj.nuget.g.props b/Maze-WPF/Logica/obj/Logica.csproj.nuget.g.props
new file mode 100644
index 0000000..8b1ca55
--- /dev/null
+++ b/Maze-WPF/Logica/obj/Logica.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\ruben\.nuget\packages\
+ PackageReference
+ 6.5.0
+
+
+
+
+
\ No newline at end of file
diff --git a/Maze-WPF/Logica/obj/Logica.csproj.nuget.g.targets b/Maze-WPF/Logica/obj/Logica.csproj.nuget.g.targets
new file mode 100644
index 0000000..35a7576
--- /dev/null
+++ b/Maze-WPF/Logica/obj/Logica.csproj.nuget.g.targets
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/Maze-WPF/Logica/obj/project.assets.json b/Maze-WPF/Logica/obj/project.assets.json
new file mode 100644
index 0000000..a0063b9
--- /dev/null
+++ b/Maze-WPF/Logica/obj/project.assets.json
@@ -0,0 +1,68 @@
+{
+ "version": 3,
+ "targets": {
+ "net7.0": {}
+ },
+ "libraries": {},
+ "projectFileDependencyGroups": {
+ "net7.0": []
+ },
+ "packageFolders": {
+ "C:\\Users\\ruben\\.nuget\\packages\\": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Global.csproj",
+ "projectName": "Global",
+ "projectPath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Global.csproj",
+ "packagesPath": "C:\\Users\\ruben\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\ruben\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net7.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net7.0": {
+ "targetAlias": "net7.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net7.0": {
+ "targetAlias": "net7.0",
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Maze-WPF/Logica/obj/project.nuget.cache b/Maze-WPF/Logica/obj/project.nuget.cache
new file mode 100644
index 0000000..016030a
--- /dev/null
+++ b/Maze-WPF/Logica/obj/project.nuget.cache
@@ -0,0 +1,8 @@
+{
+ "version": 2,
+ "dgSpecHash": "wtvXx8L876Dl4zi7Vkb7x2GW9w6yg+7IgGMzvezAyC8HkiO2sjeFGKKpAQqoYIqAbKSQa6p8Q5kaygKJfoFYbQ==",
+ "success": true,
+ "projectFilePath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Global.csproj",
+ "expectedPackageFiles": [],
+ "logs": []
+}
\ No newline at end of file
diff --git a/Maze-WPF/test/Class1.cs b/Maze-WPF/test/Class1.cs
new file mode 100644
index 0000000..7eec0be
--- /dev/null
+++ b/Maze-WPF/test/Class1.cs
@@ -0,0 +1,5 @@
+namespace test {
+ public class Class1 {
+
+ }
+}
\ No newline at end of file
diff --git a/Maze-WPF/test/obj/Debug/net7.0/test.AssemblyInfo.cs b/Maze-WPF/test/obj/Debug/net7.0/test.AssemblyInfo.cs
new file mode 100644
index 0000000..31cc01a
--- /dev/null
+++ b/Maze-WPF/test/obj/Debug/net7.0/test.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// 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.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("test")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("test")]
+[assembly: System.Reflection.AssemblyTitleAttribute("test")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/Maze-WPF/test/obj/Debug/net7.0/test.AssemblyInfoInputs.cache b/Maze-WPF/test/obj/Debug/net7.0/test.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..0197d48
--- /dev/null
+++ b/Maze-WPF/test/obj/Debug/net7.0/test.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+a987eb0675210088860249537ec979b0010c987d
diff --git a/Maze-WPF/test/obj/Debug/net7.0/test.GeneratedMSBuildEditorConfig.editorconfig b/Maze-WPF/test/obj/Debug/net7.0/test.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..47c2fd4
--- /dev/null
+++ b/Maze-WPF/test/obj/Debug/net7.0/test.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,11 @@
+is_global = true
+build_property.TargetFramework = net7.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = test
+build_property.ProjectDir = C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\test\
diff --git a/Maze-WPF/test/obj/Debug/net7.0/test.GlobalUsings.g.cs b/Maze-WPF/test/obj/Debug/net7.0/test.GlobalUsings.g.cs
new file mode 100644
index 0000000..ac22929
--- /dev/null
+++ b/Maze-WPF/test/obj/Debug/net7.0/test.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/Maze-WPF/test/obj/Debug/net7.0/test.assets.cache b/Maze-WPF/test/obj/Debug/net7.0/test.assets.cache
new file mode 100644
index 0000000..516ef3e
Binary files /dev/null and b/Maze-WPF/test/obj/Debug/net7.0/test.assets.cache differ
diff --git a/Maze-WPF/test/obj/Debug/net7.0/test.csproj.AssemblyReference.cache b/Maze-WPF/test/obj/Debug/net7.0/test.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..0758ba3
Binary files /dev/null and b/Maze-WPF/test/obj/Debug/net7.0/test.csproj.AssemblyReference.cache differ
diff --git a/Maze-WPF/test/obj/project.assets.json b/Maze-WPF/test/obj/project.assets.json
new file mode 100644
index 0000000..90f7414
--- /dev/null
+++ b/Maze-WPF/test/obj/project.assets.json
@@ -0,0 +1,68 @@
+{
+ "version": 3,
+ "targets": {
+ "net7.0": {}
+ },
+ "libraries": {},
+ "projectFileDependencyGroups": {
+ "net7.0": []
+ },
+ "packageFolders": {
+ "C:\\Users\\ruben\\.nuget\\packages\\": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\test\\test.csproj",
+ "projectName": "test",
+ "projectPath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\test\\test.csproj",
+ "packagesPath": "C:\\Users\\ruben\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\test\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\ruben\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net7.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net7.0": {
+ "targetAlias": "net7.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net7.0": {
+ "targetAlias": "net7.0",
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Maze-WPF/test/obj/project.nuget.cache b/Maze-WPF/test/obj/project.nuget.cache
new file mode 100644
index 0000000..59941ff
--- /dev/null
+++ b/Maze-WPF/test/obj/project.nuget.cache
@@ -0,0 +1,8 @@
+{
+ "version": 2,
+ "dgSpecHash": "HF0AfmuW/PfzXeV47aZYK9TeONHaFV2vc5bZjChB2AxkrVyCJ2/jwue/zD5ErHU1Z1/OXjHhhLiRPPAsxYOb1g==",
+ "success": true,
+ "projectFilePath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\test\\test.csproj",
+ "expectedPackageFiles": [],
+ "logs": []
+}
\ No newline at end of file
diff --git a/Maze-WPF/test/obj/test.csproj.nuget.dgspec.json b/Maze-WPF/test/obj/test.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..b3d8eb6
--- /dev/null
+++ b/Maze-WPF/test/obj/test.csproj.nuget.dgspec.json
@@ -0,0 +1,63 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\test\\test.csproj": {}
+ },
+ "projects": {
+ "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\test\\test.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\test\\test.csproj",
+ "projectName": "test",
+ "projectPath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\test\\test.csproj",
+ "packagesPath": "C:\\Users\\ruben\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\test\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\ruben\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net7.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net7.0": {
+ "targetAlias": "net7.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net7.0": {
+ "targetAlias": "net7.0",
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Maze-WPF/test/obj/test.csproj.nuget.g.props b/Maze-WPF/test/obj/test.csproj.nuget.g.props
new file mode 100644
index 0000000..8b1ca55
--- /dev/null
+++ b/Maze-WPF/test/obj/test.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\ruben\.nuget\packages\
+ PackageReference
+ 6.5.0
+
+
+
+
+
\ No newline at end of file
diff --git a/Maze-WPF/test/obj/test.csproj.nuget.g.targets b/Maze-WPF/test/obj/test.csproj.nuget.g.targets
new file mode 100644
index 0000000..35a7576
--- /dev/null
+++ b/Maze-WPF/test/obj/test.csproj.nuget.g.targets
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/Maze-WPF/test/test.csproj b/Maze-WPF/test/test.csproj
new file mode 100644
index 0000000..4658cbf
--- /dev/null
+++ b/Maze-WPF/test/test.csproj
@@ -0,0 +1,9 @@
+
+
+
+ net7.0
+ enable
+ enable
+
+
+