#include #include "Game.h" Game::Game(Player &p1, Player &p2) : _p1(p1), _p2(p2) { std::clog << "Creating game with players "; std::clog << "[" << _p1.name() << ", " << _p2.name() << "]"; std::clog << std::endl; }