runelite-api: add convexhull to wallobject

This commit is contained in:
dekvall
2019-10-01 14:05:51 +02:00
parent 6547478c07
commit 3819994572

View File

@@ -24,6 +24,8 @@
*/
package net.runelite.api;
import java.awt.Polygon;
/**
* Represents one or two walls on a tile
*/
@@ -55,6 +57,15 @@ public interface WallObject extends TileObject
*/
int getConfig();
/**
* Gets the convex hull of the objects model.
*
* @return the convex hull
* @see net.runelite.api.model.Jarvis
*/
Polygon getConvexHull();
Polygon getConvexHull2();
Renderable getRenderable1();
Renderable getRenderable2();
}