diff options
author | Kyle K <kylek389@gmail.com> | 2011-01-31 15:40:30 -0600 |
---|---|---|
committer | Kamil Kaminski <kamilkss@gmail.com> | 2011-01-31 15:40:30 -0600 |
commit | 1458bf374f2070b3879a3ead7a3af5c5651e824b (patch) | |
tree | c0086a60a6178d0730b46b5bb5dc861454d8f7c0 /cardpile.h | |
parent | 53851a3b1af720a58360a5019a1707eba74199d3 (diff) | |
download | poker-1458bf374f2070b3879a3ead7a3af5c5651e824b.tar.gz poker-1458bf374f2070b3879a3ead7a3af5c5651e824b.tar.bz2 poker-1458bf374f2070b3879a3ead7a3af5c5651e824b.zip |
do some more little work
Diffstat (limited to 'cardpile.h')
-rw-r--r-- | cardpile.h | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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: |