diff options
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -63,9 +63,11 @@ int main(int argc, char *argv[]) pokerGame->printOpponentCards(); #ifdef DEBUG - cout << "Computer's AI" << endl; + cout << "\nComputer's AI"; pokerGame->opponentAI(pokerGame->getOpponentsCards(1)); pokerGame->printOpponentCards(); + cout << "Resorted Opponents' cards:" << endl; + pokerGame->printOpponentCards(); #endif #ifdef DEBUG |