コード例 #1
0
ファイル: controler.php プロジェクト: k-lusine/guessgame
 public function newGame()
 {
     if (!isset($_SESSION["word"])) {
         $_SESSION["word"] = Word::newWord();
     }
     $this->game = new Game($_SESSION["word"]);
 }