PocketMine-MP 5.19.1 git-f1b1a7022d7dc67d012d8891bc4c23c2652c825e
BrewItemEvent.php
1<?php
2
3/*
4 *
5 * ____ _ _ __ __ _ __ __ ____
6 * | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
7 * | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
8 * | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
9 * |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
10 *
11 * This program is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License as published by
13 * the Free Software Foundation, either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * @author PocketMine Team
17 * @link http://www.pocketmine.net/
18 *
19 *
20 */
21
22declare(strict_types=1);
23
25
31
32class BrewItemEvent extends BlockEvent implements Cancellable{
34
35 public function __construct(
36 private BrewingStand $brewingStand,
37 private int $slot,
38 private Item $input,
39 private Item $result,
40 private BrewingRecipe $recipe
41 ){
42 parent::__construct($brewingStand->getBlock());
43 }
44
45 public function getBrewingStand() : BrewingStand{
46 return $this->brewingStand;
47 }
48
52 public function getSlot() : int{
53 return $this->slot;
54 }
55
56 public function getInput() : Item{
57 return clone $this->input;
58 }
59
60 public function getResult() : Item{
61 return clone $this->result;
62 }
63
64 public function setResult(Item $result) : void{
65 $this->result = clone $result;
66 }
67
68 public function getRecipe() : BrewingRecipe{
69 return $this->recipe;
70 }
71}