Exemplo n.º 1
0
 public Bet(int Amount, int ElephantNum, Punter Bettor)
 {
     this.Amount      = Amount;
     this.ElephantNum = ElephantNum;
     this.Bettor      = Bettor;
 }
Exemplo n.º 2
0
 public Bet(int Amount, int LionNum, Punter Bettor)
 {
     this.Amount  = Amount;
     this.LionNum = LionNum;
     this.Bettor  = Bettor;
 }