#ifndef PLAYER_T #define PLAYER_T #include #include "CardT.h" struct PlayerT { std::string name; CardT card; int score; }; void PrintPlayer(const PlayerT & player); void CreatePlayer( PlayerT & player, std::string name); #endif