Beispiel #1
0
 private void declareResultBtn_Click(object sender, EventArgs e)
 {
     if (facade.GameStatus())
     {
         EndGame end = new EndGame();
         end.Show();
     }
     else
     {
         MessageBox.Show("No game in progress.");
     }
 }