示例#1
0
文件: Game.php 项目: kelindev/fcsc
 public function newRound()
 {
     $this->round_count++;
     $this->round_secret = Game::randomString();
     $this->round_start_ts = Carbon::now();
     $this->round_points = 0;
     $this->round_guessed_count = 0;
 }