public Person(String name) { //a new member gets 10 euro as a gift this.name = name; this.balance = 10; this.myBet = null; }
public Person(String name, int balance) { this.name = name; this.balance = balance; this.myBet = null; }