Skip to content

Instantly share code, notes, and snippets.

Created April 27, 2013 13:53
Show Gist options
  • Save anonymous/5473207 to your computer and use it in GitHub Desktop.
Save anonymous/5473207 to your computer and use it in GitHub Desktop.
package Roulette;
public class Passenger57 {
public Table table;
public Outcome black;
public Passenger57(Table table){
table = new Table();
black = new Outcome("Black", 1);
}
void placeBets(){
Bet bet = new Bet(100, black);
table.placeBet(bet);
}
void win(Bet bet){
System.out.println("You've won: " + bet.winAmount());
}
void lose(Bet bet){
System.out.println("You lost!"+bet.loseAmount()+ ":/");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment