11 lines
178 B
C++
11 lines
178 B
C++
|
#include "players/cli.hpp"
|
||
|
#include "game.hpp"
|
||
|
|
||
|
int main() {
|
||
|
Game game(2);
|
||
|
CLIPlayer cliPlayer;
|
||
|
game.players[1] = (Player)cliPlayer;
|
||
|
game.play();
|
||
|
return 0;
|
||
|
}
|