Added Chunk.getWorld()

This commit is contained in:
Dinnerbone 2011-01-04 14:08:29 +00:00
parent 08b38c850b
commit c5c124eb1a

View File

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