Added getHeight to BlockChangeDelegate

This commit is contained in:
Dinnerbone
2011-09-23 17:15:23 +01:00
parent 7306aa8d3d
commit d3cb53606d

View File

@@ -40,4 +40,11 @@ public interface BlockChangeDelegate {
* @return
*/
public int getTypeId(int x, int y, int z);
/**
* Gets the height of the world.
*
* @return Height of the world
*/
public int getHeight();
}