Example #1
0
 public void Reset()
 {
     CurrentBet = null;
     PlayerActivityIndicator.Text = Name + " hasn't placed a bet";
 }
Example #2
0
 //it is used to clear the amount of bet after completion the race
 public void ClearBet()
 {
     // if the user has not set any bet then it will display no one has set the bet
     MyBet         = null;
     MyLabel2.Text = Name + " HASN'T PLACED A BET";
 }
Example #3
0
 public Mark(Bet bet, Label MaximumBet, int Cash, Label label) : base(bet, MaximumBet, Cash, label)
 {
 }