blob: e5e492f8d851f311d0a510081f0595a27fbef0d5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <iostream>
#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;
}
|