コード例 #1
0
ファイル: player.cpp プロジェクト: stpettersens/21
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;
}