getWidth() public method

public getWidth ( )
Ejemplo n.º 1
0
 private static function writeShapedRecipe(ShapedRecipe $recipe, BinaryStream $stream)
 {
     $stream->putInt($recipe->getWidth());
     $stream->putInt($recipe->getHeight());
     for ($z = 0; $z < $recipe->getHeight(); ++$z) {
         for ($x = 0; $x < $recipe->getWidth(); ++$x) {
             $stream->putSlot($recipe->getIngredient($x, $z));
         }
     }
     $stream->putInt(1);
     $stream->putSlot($recipe->getResult());
     $stream->putUUID($recipe->getId());
     return CraftingDataPacket::ENTRY_SHAPED;
 }