From fb8003eead604bcc3a1aa3c5e1366ff37ceaf0bb Mon Sep 17 00:00:00 2001 From: DamianKomdeur <77113617+DamianKomdeur@users.noreply.github.com> Date: Mon, 9 Dec 2024 00:42:58 +0100 Subject: [PATCH] Subclass change Not a subclass from binary anymore since in the end I didn't use any of those methods. --- PuzzlePlayer/Sudoku.cs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/PuzzlePlayer/Sudoku.cs b/PuzzlePlayer/Sudoku.cs index ecdda24..c27127c 100644 --- a/PuzzlePlayer/Sudoku.cs +++ b/PuzzlePlayer/Sudoku.cs @@ -7,11 +7,10 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -using static System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar; namespace PuzzlePlayer_Namespace { - internal class Sudoku : Binary + internal class Sudoku : Board { private static int boardLength; private static int rootBoardLength; @@ -280,5 +279,12 @@ namespace PuzzlePlayer_Namespace } } + protected override List<Move> GetSolveList(int[,] boardToSolve) + { + List<Move> result = new List<Move>(); + + return result; + } + } } -- GitLab