Beispiel #1
0
 /**
  * Crée un Qg lié à ce Hexa
  * @param int $type
  * @return Qg
  */
 public function createQg($type = Unites::TYPE_TERRESTRE)
 {
     $qg = new Qg();
     $qg->setIdHexa($this->getIdHexa());
     $qg->setNiveau($this->getNiveauQgsFabriques());
     $qg->setCapop(100);
     $qg->setXp(0);
     $qg->setIdTypeQg($type);
     return $qg;
 }