Bet() public method

public Bet ( int roll_before ) : int
roll_before int
return int
 // ask for a bet amount in the beginning of the round
 public override int Bet(Game game)
 {
     return(agent.Bet(10000) * 100);
 }