Exemplo n.º 1
0
 void DealerBustedText() // Updates lable saying that dealer busted.
 {
     DealerResultLbl.Text = "Busted!";
     DealerResultLbl.Show();
 }
Exemplo n.º 2
0
 void DealerBlackjackText() // Updates lable saying that dealer got a blackjack.
 {
     DealerResultLbl.Text = "Blackjack!";
     DealerResultLbl.Show();
 }