CardGame
Rogue-like card videogame
Loading...
Searching...
No Matches
deckEntry.h
Go to the documentation of this file.
1#ifndef DECKENTRY_H
2#define DECKENTRY_H
3
4#include <string>
5
16{
17 std::string cardId;
19};
20
21#endif // DECKENTRY_H
Represents a single card entry in the player's persistent deck.
Definition: deckEntry.h:16
int cardCount
Number of copies owned.
Definition: deckEntry.h:18
std::string cardId
Identifier matching a CardDefinition.
Definition: deckEntry.h:17