summaryrefslogtreecommitdiffstats
path: root/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'game.h')
-rw-r--r--game.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/game.h b/game.h
index c385f74..ceac0dc 100644
--- a/game.h
+++ b/game.h
@@ -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