18
paper-api/src/main/java/org/bukkit/World.java
Normal file
18
paper-api/src/main/java/org/bukkit/World.java
Normal file
@@ -0,0 +1,18 @@
|
||||
|
||||
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();
|
||||
}
|
||||
Reference in New Issue
Block a user