string Player::hit(Cards cards) { string card = cards.draw(); this->cards.push_back(card); this->values.push_back(cards.getValue()); cout << "Player hits." << endl; cout << "Player gets " << card << endl; return card; }