cs361-W16 / Blackjack-10

0 stars 4 forks source link

Betting Features #11

Closed ghost closed 8 years ago

ghost commented 8 years ago

Added buttons for betting, ante, and double down. changed the game functions so that paying the ante allows the rest of the hand to progress. changed the dealTwo function so that it gives the player two cards and the dealer one card, that's what the rubric wants. this should be taken into account for whoever implements the dealer playing stuff. added displays for the player's total money and current bet.

Codysseus commented 8 years ago

You seem to be using the Actor class as the player class. The actor should be the parent of Player and dealer. That should be a minor change, otherwise, I think you're good!

ghost commented 8 years ago

The player class hadn't been created yet, so I did that and now that is used instead of the Actor class

Codysseus commented 8 years ago

Great! I will merge this so that other can start working with the player class!