コード例 #1
0
ファイル: Person.cs プロジェクト: arshdeepmalhi/Races
 public Person(string name, int Cash, Label MyLabel, RadioButton guyButton)
 {
     Name          = name;
     this.Cash     = Cash;
     this.MyLabel  = MyLabel;
     MyRadioButton = guyButton;
     MyBet         = null;
 }
コード例 #2
0
ファイル: Person.cs プロジェクト: arshdeepmalhi/Races
 public bool SetBet(int Amount, int horse)
 {
     MyBet = new Gamble(Amount, horse, this);
     UpdateLabels();
     if (MyBet.Amount == 0)
     {
         MyRadioButton.Enabled = false;
     }
     return(false);
 }
コード例 #3
0
ファイル: Person.cs プロジェクト: arshdeepmalhi/Races
 public void UnSetBet()
 {
     MyBet = null;
 }