Added getHeight to BlockChangeDelegate

This commit is contained in:
Dinnerbone 2011-09-23 17:15:23 +01:00
parent a07d79e275
commit 205d194404

View File

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