summaryrefslogtreecommitdiffstats
path: root/cardpile.h
diff options
context:
space:
mode:
authorKyle K <kylek389@gmail.com>2011-01-31 15:40:30 -0600
committerKamil Kaminski <kamilkss@gmail.com>2011-01-31 15:40:30 -0600
commit1458bf374f2070b3879a3ead7a3af5c5651e824b (patch)
treec0086a60a6178d0730b46b5bb5dc861454d8f7c0 /cardpile.h
parent53851a3b1af720a58360a5019a1707eba74199d3 (diff)
downloadpoker-1458bf374f2070b3879a3ead7a3af5c5651e824b.tar.gz
poker-1458bf374f2070b3879a3ead7a3af5c5651e824b.tar.bz2
poker-1458bf374f2070b3879a3ead7a3af5c5651e824b.zip
do some more little work
Diffstat (limited to 'cardpile.h')
-rw-r--r--cardpile.h12
1 files changed, 12 insertions, 0 deletions
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: