11 lines
178 B
C++
Raw Normal View History

2025-02-20 19:01:27 +00:00
#include "players/cli.hpp"
#include "game.hpp"
int main() {
Game game(2);
CLIPlayer cliPlayer;
game.players[1] = (Player)cliPlayer;
game.play();
return 0;
}