When developing a new card game, blackjack, poker, anything that involves cards, wouldn't it just be easier to already have the deck built? That is exactly what this component does. This component creates a shoe of however many decks of cards you want, as long as that number is 1 or greater!
#include "AnubisCards.cpp"
int main() {
Deck *example = new Deck(1);
example->demo();
}
This will list the stats of each card in the deck in the following format:
Suit: 4
Visible: false
Suit Letter: C
Suit Name: Club
Letter: K
Name: King
Value: 10
******************************************************
Questions & Comments