diff options
Diffstat (limited to 'game.h')
-rw-r--r-- | game.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -63,6 +63,7 @@ class Game : virtual public CardPile, public User, public Opponent bool hasTwoPairs(Card **); void evaluateHand(Card **, int); void showHands(void); + void determineWinner(void); /* variables */ int handsPlayed; @@ -70,6 +71,7 @@ class Game : virtual public CardPile, public User, public Opponent static string *hands[10]; static string *suits[5]; + static string *winmsg[4]; }; #endif |