Skip to content
Snippets Groups Projects
Commit 31d653c8 authored by bionic85's avatar bionic85
Browse files

bababa

parent 577d1e3c
No related branches found
No related tags found
No related merge requests found
......@@ -8,8 +8,16 @@ namespace PuzzlePlayer_Namespace
{
internal class Binair : Board
{
//
public int[,] boardState { get; set; }
private int[,] board;
public Binair(int boardSize)
{
board = new int[boardSize,boardSize];
}
public static void Generate()
{
throw new NotImplementedException();
......
......@@ -9,6 +9,7 @@ namespace PuzzlePlayer_Namespace
{
public interface Board
{
// interface should have a property to get or set the current boardstate
int[,] boardState { get; set; }
public abstract static void Solve();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment