コード例 #1
0
ファイル: Men.php プロジェクト: varyan/namecpaseSystem
 /**
  * __construct method
  * @param string $name
  * */
 public function __construct($name)
 {
     parent::__construct($name);
     $this->setNoise('Barev');
     $this->setHitType('Harvacec');
 }
コード例 #2
0
ファイル: Dog.php プロジェクト: varyan/namecpaseSystem
 /**
  * __construct method
  * @param string $name
  * */
 public function __construct($name)
 {
     parent::__construct($name);
     $this->setNoise('haf');
     $this->setHitType('bit');
 }
コード例 #3
0
ファイル: Cat.php プロジェクト: varyan/namecpaseSystem
 /**
  * __construct method
  * @param string $name
  * */
 public function __construct($name)
 {
     parent::__construct($name);
     $this->setNoise('meow');
     $this->setHitType('scratch');
 }
コード例 #4
0
ファイル: Horse.php プロジェクト: varyan/namecpaseSystem
 /**
  * __construct method
  * @param string $name
  * */
 public function __construct($name)
 {
     parent::__construct($name);
     $this->setNoise('i he he');
 }