CardGame
Rogue-like card videogame
Loading...
Searching...
No Matches
drawData.h
Go to the documentation of this file.
1#ifndef DRAWDATA_H
2#define DRAWDATA_H
3
4#include <string_view>
5#include <vector>
6
7struct DrawData
8{
9 std::vector<std::string_view> drawnCardsNames{};
10 bool reshuffled = false;
11};
12
13#endif // DRAWDATA_H
Definition: drawData.h:8
bool reshuffled
Definition: drawData.h:10
std::vector< std::string_view > drawnCardsNames
Definition: drawData.h:9