summaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index a01b1fb..1dee3e1 100644
--- a/main.cpp
+++ b/main.cpp
@@ -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");