pocketmine\network\protocol\StartGamePacket::encode PHP Метод

encode() публичный Метод

public encode ( )
    public function encode()
    {
        $this->reset();
        $this->putInt($this->seed);
        $this->putByte($this->dimension);
        $this->putInt($this->generator);
        $this->putInt($this->gamemode);
        $this->putLong($this->eid);
        $this->putInt($this->spawnX);
        $this->putInt($this->spawnY);
        $this->putInt($this->spawnZ);
        $this->putFloat($this->x);
        $this->putFloat($this->y);
        $this->putFloat($this->z);
        $this->putByte(1);
        $this->putByte(1);
        $this->putByte(0);
        $this->putString($this->unknown);
    }
StartGamePacket