コード例 #1
0
ファイル: Healer.php プロジェクト: macseem/bee-game
 public function beforeTakeHit()
 {
     $this->heal($this->searchBee(), $this->getHoneyPool());
     return parent::beforeTakeHit();
 }
コード例 #2
0
ファイル: Worker.php プロジェクト: macseem/bee-game
 public function beforeTakeHit()
 {
     $this->makeHoney($this->getHoneyPool());
     return parent::beforeTakeHit();
 }