Small fixes

This commit is contained in:
Stone_Red
2023-05-05 19:51:57 +02:00
parent eb79a8d616
commit c284036395
2 changed files with 1 additions and 3 deletions
-3
View File
@@ -12,9 +12,6 @@
</ItemGroup>
<ItemGroup>
<None Update="big-maze.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="input.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
+1
View File
@@ -17,6 +17,7 @@ try
{
ConsoleExt.WriteLine("Console window size too small. Visualizing the maze may cause errors!", ConsoleColor.Red);
ConsoleExt.Pause(true, "Press ENTER to continue or CTRL+C to exit the program.");
Console.Clear();
}
List<DfsNode> solution = solver.Solve(startNode, maze, GraphicsMode.Colored);