Ejemplo n.º 1
0
 private void startBtn_Click(object sender, EventArgs e)
 {
     if (diceGame)
     {
         Games.Close();
         Which_Dice_Game_Form WhichDice = new Which_Dice_Game_Form();
         WhichDice.Show();
     }
     else if (cardGame)
     {
         Games.Close();
         Which_Card_Game_Form WhichCard = new Which_Card_Game_Form();
         WhichCard.Show();
     }
 }