checkpoint

This commit is contained in:
2022-06-07 20:29:04 -05:00
parent b3e0d154bd
commit 3a9a627e0d
8 changed files with 105 additions and 166 deletions

View File

@@ -1,5 +1,4 @@
using Shogi.Domain.Pieces;
using System;
using System.Text;
namespace Shogi.Domain
@@ -20,8 +19,8 @@ namespace Shogi.Domain
public Shogi(ShogiBoardState board)
{
this.rules = new StandardRules(board);
this.boardState = board;
rules = new StandardRules(this.boardState);
}
/// <summary>