예제 #1
0
파일: God.php 프로젝트: Vincebml/PHPatterns
 /**
  * @param string $name
  * @param Bridge\WeaponInterface $weapon
  */
 public function __construct($name, Bridge\WeaponInterface $weapon)
 {
     parent::__construct($name, $weapon);
     $this->force = 150.0;
     $this->life = 200.0;
 }