Beispiel #1
0
 public void Collect(int Winner)
 {
     // Ask my bet to pay out, clear my bet, and update my labels
     this.Cash += MyBet.PayOut(Winner);
     ClearBet();
     UpdateLabel();
 }
Beispiel #2
0
 public void Collect(int Winner)
 {
     Cash += MyBet.PayOut(Winner);
 }
Beispiel #3
0
 public void Collect(int winner)
 {
     Cash += MyBet.PayOut(winner);
     this.UpdateLabels();
 }