entity = $entity; $this->drops = $drops; } /** * @return Living */ public function getEntity(){ return $this->entity; } /** * @return \pocketmine\item\Item[] */ public function getDrops(){ return $this->drops; } /** * @param Item[] $drops */ public function setDrops(array $drops){ $this->drops = $drops; } }