class Card {
public:
// constructor
Card (suits, int);
// access attributes of card
colors color ();
bool faceUp();
int rank();
suits suit();
// perform actions
void draw (window &, int x, int y);
void flip ();
void halfdraw (window &, int x, int y);
private:
bool faceup;
int r; // rank
suits s; // suit
};