Esempio n. 1
0
        //sets up new game
        public void newGame()
        {
            //Reset game
            currentGame.reset();

            //set the first player based on user input
            currentGame.Turn = firstPlayerColour;

            //Create New Logical chessboard
            chessBoard = ChessPiece.CreateChessBoard();

            //Display Board
            DrawCheckeredPattern();
            updateDisplay();
        }