mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-20 23:31:33 +01:00
a0fc0979f7
By: Erik Broes <erikbroes@grum.nl>
19 lines
395 B
Java
19 lines
395 B
Java
|
|
package org.bukkit;
|
|
|
|
/**
|
|
* Represents a world.
|
|
*
|
|
* Currently there is only one world in the default Minecraft spec, but this
|
|
* may change with the addition of a functional Nether world
|
|
*/
|
|
public interface World {
|
|
public Block getBlockAt(int x, int y, int z);
|
|
|
|
public Chunk getChunkAt(int x, int z);
|
|
|
|
public Chunk getChunkAt(Block block);
|
|
|
|
public boolean isChunkLoaded();
|
|
}
|