Merge pull request #424 from oplosthee/grounditems-height

Incorporate height into the GroundItems overlay
This commit is contained in:
Adam
2018-01-24 14:01:15 -05:00
committed by GitHub
4 changed files with 16 additions and 5 deletions

View File

@@ -26,6 +26,8 @@ package net.runelite.api;
public interface ItemLayer extends TileObject
{
int getHeight();
Renderable getBottom();
Renderable getMiddle();

View File

@@ -45,6 +45,8 @@ public interface TileObject
Point getCanvasLocation();
Point getCanvasLocation(int zOffset);
Polygon getCanvasTilePoly();
Point getCanvasTextLocation(Graphics2D graphics, String text, int zOffset);