49        $x = LE::readSignedInt($in);
 
   50        $y = LE::readSignedInt($in);
 
   51        $z = LE::readSignedInt($in);
 
   53        $this->slot = Byte::readUnsigned($in);
 
   54        $this->disabled = CommonTypes::getBool($in);
 
 
   58        LE::writeSignedInt($out, $this->position->getX());
 
   59        LE::writeSignedInt($out, $this->position->getY());
 
   60        LE::writeSignedInt($out, $this->position->getZ());
 
   61        Byte::writeUnsigned($out, $this->slot);
 
   62        CommonTypes::putBool($out, $this->disabled);