1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#include "Card.h"
class Deck : Card
{
//const string SUIT[4];
//const string FACE[13];
const string FACE[13] = ["A","2","3","4","5","6","7","8","9","10","J","Q","K"];
const string SUIT [4] = ["S","C","D","H"];
int MAX_CARDS[52];
public:
Deck();
void Shuffle();
void show_cards();
int get_card(int cardID);
};
|