diff --git a/src/pocketmine/event/player/PlayerAnimationEvent.php b/src/pocketmine/event/player/PlayerAnimationEvent.php new file mode 100644 index 000000000..0f5cbdd73 --- /dev/null +++ b/src/pocketmine/event/player/PlayerAnimationEvent.php @@ -0,0 +1,53 @@ +player = $player; + $this->drop = $drop; + } + + /** + * @return Item + */ + public function getItem(){ + return $this->drop; + } + +} \ No newline at end of file