19 User(
const int playerLimit) :
Player(
"User", playerLimit)
A player is defined by the score that he earns through his chances, in which he can either hit or sta...
Definition player.h:22
void hit(Deck &deck) override
Compute the score based on the card the user is dealt.
Definition user.cpp:31
User(const int playerLimit)
Definition user.h:19
void chance(Deck &deck) override
Ask the user if he wants to HIT or STAND.
Definition user.cpp:15
Defines the contract for a Player.