summaryrefslogtreecommitdiffstats
path: root/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'game.h')
-rw-r--r--game.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/game.h b/game.h
index 9d79fcc..c8874b8 100644
--- a/game.h
+++ b/game.h
@@ -42,11 +42,15 @@ class Game : virtual public CardPile, public User, public Opponent
struct countAndSuit numOfSameSuit(Card **);
bool doWeHaveAnAce(Card **);
- void discardFromPairOrBetter(Card **, int);
+ int *whichCardsToDiscard(Card **);
+ void oppDiscardFromPairOrBetter(Card **, int);
bool sanityCheck(Card **);
void discardAndDraw(Card **, int, int);
void opponentAI(int);
+ void userDiscardCards(Card **, int);
+ void userAI(Card **);
+
/* variables */
int handsPlayed;
int handsWon;