예제 #1
0
파일: Guy.cs 프로젝트: Teagle0603/DogRace
 public void Collect(int Winner)
 {
     this.Cash += MyBet.PayOut(Winner);
     this.ClearBet();
     this.UpdateLabel();
 }
예제 #2
0
 public void Collect(int Winner) // winner
 {
     Cash += MyBet.PayOut(Winner);
 }