You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
299 B

#include <iostream>
#include "Player.h"
#include "Game.h"
int main() {
Player player1;
Player player2;
Game game;
game.addPlayer(player1);
game.addPlayer(player2);
// 踏狗쭉서...
if (game.isGameOver()) {
game.endGame();
}
return 0;
}