21 lines
200 B
C++
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
|