Set botPoints
@ -34,10 +34,12 @@ public class BlackJack {
private String playerName;
private int playerPoints;
private int botPoints;
public BlackJack(String playerName) {
this.playerName = playerName;
this.playerPoints = 0;
this.botPoints = 0;
}