diff --git a/PuzzlePlayer/Sudoku.cs b/PuzzlePlayer/Sudoku.cs
index ecdda24fb3cff8d1d1cc98e146495d2f872980ed..c27127cfa21da7b8a72811339b49b7c517ca8548 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;
+        }
+
     }
 }