parent
8954fe7d71
commit
9c5c49c175
@ -0,0 +1,19 @@
|
|||||||
|
#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;
|
||||||
|
}
|
Loading…
Reference in new issue