From 2b73da5412accd5f213d12eefb08accb34f53360 Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Date: Thu, 5 Jun 2014 00:41:24 +0200 Subject: [PATCH] Added Animation --- .../event/player/PlayerAnimationEvent.php | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 src/pocketmine/event/player/PlayerAnimationEvent.php 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