예제 #1
0
 private void UserInputSubmitButton_Click(object sender, EventArgs e)
 {
     TicTacToeGame.SetPlayerNames(P1nameTextBox.Text, p2NameTextBox.Text);
     this.Close();
 }
예제 #2
0
        static void Main(string[] args)
        {
            TicTacToeGame ticTacToe = new TicTacToeGame();

            ticTacToe.PlayGame();
        }