pocketmine\level\Level::getHeightMap PHP Method

getHeightMap() public method

public getHeightMap ( integer $x, integer $z ) : integer
$x integer
$z integer
return integer
    public function getHeightMap(int $x, int $z) : int
    {
        return $this->getChunk($x >> 4, $z >> 4, true)->getHeightMap($x & 0xf, $z & 0xf);
    }
Level