Initial playSplitHand implementation

This commit is contained in:
Dave Burke
2022-02-22 13:03:35 -06:00
parent 1592263258
commit 5aee1ecd09
3 changed files with 75 additions and 7 deletions
+1
View File
@@ -89,6 +89,7 @@ public class Player {
* Removes first card from hand to adds it to split hand
*/
public void split() {
this.splitBet = this.currentBet;
splitHand.add(hand.pop());
}