This commit is contained in:
2022-01-29 10:07:53 -06:00
parent 499e480851
commit f79a1312c7
4 changed files with 190 additions and 161 deletions

View File

@@ -42,6 +42,9 @@ namespace Shogi.Domain
{
board[kvp.Key] = kvp.Value == null ? null : new Piece(kvp.Value);
}
WhoseTurn = other.WhoseTurn;
InCheck = other.InCheck;
IsCheckmate = other.IsCheckmate;
MoveHistory.AddRange(other.MoveHistory);
Player1Hand.AddRange(other.Player1Hand);
Player2Hand.AddRange(other.Player2Hand);