mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-05 17:36:12 +00:00
Further refactors to prepare for y=-64 lower limit
This commit is contained in:
@ -45,9 +45,14 @@ interface ChunkManager{
|
||||
public function setChunk(int $chunkX, int $chunkZ, Chunk $chunk) : void;
|
||||
|
||||
/**
|
||||
* Returns the height of the world
|
||||
* Returns the lowest buildable Y coordinate of the world
|
||||
*/
|
||||
public function getWorldHeight() : int;
|
||||
public function getMinY() : int;
|
||||
|
||||
/**
|
||||
* Returns the highest buildable Y coordinate of the world
|
||||
*/
|
||||
public function getMaxY() : int;
|
||||
|
||||
/**
|
||||
* Returns whether the specified coordinates are within the valid world boundaries, taking world format limitations
|
||||
|
Reference in New Issue
Block a user