Exemplo n.º 1
0
        public void ReportBoardState()
        {
            for (var x = 0; x < boardSize; x++)
            {
                for (var y = 0; y < boardSize; y++)
                {
                    BoardCell cell = Board[x, y];

                    ReportTool.Write($"{cell.State.ToString().Substring(0, 3)} ");
                }
                ReportTool.WriteLine("");
            }
        }