Back to project.

Raw source file available here .

#pragma once
#include <vector>
#include "card.hpp"
#include "player.hpp"

class GameDetails {

public:
std::vector<Card> playerCards;
std::vector<Card> communityCards;
double highestBed;
std::vector<Player> players;



};