Updated some packets for 0.12, UUIDs, other stuff!

This commit is contained in:
Shoghi Cervantes
2015-08-02 01:22:36 +02:00
parent 4258e22c02
commit 5621ab0c49
27 changed files with 951 additions and 380 deletions

View File

@ -21,6 +21,8 @@
namespace pocketmine\inventory;
use pocketmine\utils\UUID;
interface Recipe{
/**
@ -29,4 +31,9 @@ interface Recipe{
public function getResult();
public function registerToCraftingManager();
/**
* @return UUID
*/
public function getId();
}