pocketmine\inventory\FurnaceRecipe::__construct PHP Method

__construct() public method

public __construct ( Item $result, Item $ingredient )
$result pocketmine\item\Item
$ingredient pocketmine\item\Item
    public function __construct(Item $result, Item $ingredient)
    {
        $this->output = clone $result;
        $this->ingredient = clone $ingredient;
    }