Back to project.

Raw source file available here .

#include "players/cli.hpp"
#include "game.hpp"

int main() {
Game game(2);
CLIPlayer cliPlayer;
game.players[1] = (Player)cliPlayer;
game.play();
return 0;
}