Added getHeight to BlockChangeDelegate

By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
Bukkit/Spigot 2011-09-23 17:15:23 +01:00
parent 9549d7be86
commit b37cc0968a

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();
}