コード例 #1
0
ファイル: GameTest.php プロジェクト: vasildakov/Battleships
 public function testEndGame()
 {
     $game = new Game(10, new SimpleBoardRenderer());
     $game->endGame();
 }
コード例 #2
0
ファイル: Controller.php プロジェクト: vasildakov/Battleships
 public function start()
 {
     $this->game->setUserInput($this->getUserInput());
     $this->game->play();
     echo $this->view->render($this->game->getOutputData());
 }