Bukkit/src/main/java/org/bukkit/Chunk.java
2011-01-04 14:08:29 +00:00

30 lines
429 B
Java

package org.bukkit;
/**
* Represents a chunk of blocks
*/
public interface Chunk {
/**
* Gets the X-coordinate of this chunk
*
* @return X-coordinate
*/
int getX();
/**
* Gets the Z-coordinate of this chunk
*
* @return Z-coordinate
*/
int getZ();
/**
* Gets the world containing this chunk
*
* @return Parent World
*/
World getWorld();
}