import java.util.Scanner; public class House { private int handsWon; private Deck hand; public House() { hand = new Deck(); handsWon = 0; } public void giveCard(Card c) { hand.getCards().add(c); } public int score() { return hand.getScore(); } public void printHand() { System.out.println("The Dealers hand (score = " + hand.getScore() + ")"); hand.print(); } // return true if they want to hit // false if they want to stay public boolean hitOrStay() { return hand.getScore() <= 14; } }