1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-02-18 11:22:15 +01:00

Added Chunk.getWorld()

By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
Bukkit/Spigot 2011-01-04 14:08:29 +00:00
parent c16bd08b18
commit 5901415d13

View file

@ -20,4 +20,10 @@ public interface Chunk {
*/
int getZ();
/**
* Gets the world containing this chunk
*
* @return Parent World
*/
World getWorld();
}