From 1458bf374f2070b3879a3ead7a3af5c5651e824b Mon Sep 17 00:00:00 2001 From: Kyle K Date: Mon, 31 Jan 2011 15:40:30 -0600 Subject: do some more little work --- cardpile.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'cardpile.h') diff --git a/cardpile.h b/cardpile.h index a1e2469..25f0132 100644 --- a/cardpile.h +++ b/cardpile.h @@ -9,6 +9,18 @@ using std::cout; using std::endl; using std::string; +struct countAndSuit +{ + enum Suit whatSuit; + int count; +}; + +struct countAndType +{ + char type; + int count; +}; + class CardPile : public Card { private: -- cgit v1.2.3