#include "deck.h" #ifndef PLAYER_H #define PLAYER_H class Player { public: // constructor Player (Deck &); // operations Card draw ( ); void addPoints (int); int score (); void replaceCard (Deck &); protected: Card myCards[3]; int myScore; int removedCard; }; #endif