コード例 #1
0
        public void PlayGame()
        {
            _board = new Board();
            _board.SetupGrid();

            GetUserNames();
            ChooseFirstPlayer();
            PlayerTurnKeeper();
            DrawBoard();
            GetUserInput();
            EndofGame();
        }