def black_jack():
    """This will be the driver for the game. we only have a single player vs the dealer"""
    dealer = Dealer()
    player1 = Player(input("How much money does the player have?"))
    want_to_play = 1
    while(want_to_play == 1):
        dealer.shuffle_deck()
        dealer.ready_for_next_hand()
        player1.ready_for_next_hand()

        black_jack_hand(player1, dealer)
        want_to_play = input("Would you like to play another hand? Select 1 for Yes and 0 for no")