Files
Blackjack/GameDeck.h
2025-07-25 10:47:31 -07:00

21 lines
200 B
C++

//
// Created by alex on 7/17/25.
//
#ifndef GAMEDECK_H
#define GAMEDECK_H
#include "Deck.h"
class GameDeck : public Deck {
public:
GameDeck(int numDecks);
private:
};
#endif //GAMEDECK_H