diff options
Diffstat (limited to 'game.h')
-rw-r--r-- | game.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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; |