diff options
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -62,7 +62,11 @@ int main(int argc, char *argv[]) cout << "Opponents' cards:" << endl; pokerGame->printOpponentCards(pokerGame->numOfOpponents); - //pokerGame->opponentAI +#ifdef DEBUG + cout << "Computer's AI" << endl; + pokerGame->opponentAI(pokerGame->getOpponentsCards(1)); + pokerGame->printOpponentCards(pokerGame->numOfOpponents); +#endif #ifdef DEBUG PRINT_COLOR(ANSI_COLOR_CYAN, "\ndebug: deck after being delt to opponents and user\n"); |