diff options
Diffstat (limited to 'game.h')
-rw-r--r-- | game.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -11,12 +11,13 @@ #include "cardpile.h" #include "user.h" #include "opponent.h" +#include "sorthand.h" using std::cout; using std::endl; using std::cin; -class Game : virtual public CardPile, public User, public Opponent +class Game : virtual public CardPile, public User, public Opponent, public SortHand { private: |