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