Hi guys, I am trying to program a blackjack game, I've got my Card class and Deck class all set and correct. I was wondering to code the game, should I make a Dealer class and a Player class? Or would it be efficient to just program them in the main cpp file? Thanks in advance.
If you plan on having more then on player, or reusing players and dealers in some way later, then yes. Remember classes are all about abstraction and reusability.