summaryrefslogtreecommitdiffstats
path: root/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'game.h')
-rw-r--r--game.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/game.h b/game.h
index ceac0dc..10e401f 100644
--- a/game.h
+++ b/game.h
@@ -16,18 +16,6 @@ using std::cout;
using std::endl;
using std::cin;
-struct countAndSuit
-{
- enum Suit whatSuit;
- int count;
-};
-
-struct countAndType
-{
- char type;
- int count;
-};
-
class Game : virtual public CardPile, public User, public Opponent
{
private:
@@ -40,7 +28,6 @@ class Game : virtual public CardPile, public User, public Opponent
void askForNumberOfOpponents(void);
void repeatGame(bool *);
- /* asks user for a number, param1 = msg, 2 = rangeA, 3 = rangeB */
int parseInt(string *, int, int);
int howManyCardsOfSameSuit(Card **);
bool pairOrBetter(Card **);