furnaceType; } public function getResult() : Item{ return $this->inventory->getItem(self::SLOT_RESULT); } public function getFuel() : Item{ return $this->inventory->getItem(self::SLOT_FUEL); } public function getSmelting() : Item{ return $this->inventory->getItem(self::SLOT_INPUT); } public function setResult(Item $item) : void{ $this->inventory->setItem(self::SLOT_RESULT, $item); } public function setFuel(Item $item) : void{ $this->inventory->setItem(self::SLOT_FUEL, $item); } public function setSmelting(Item $item) : void{ $this->inventory->setItem(self::SLOT_INPUT, $item); } }