Package net.storm.api.domain.tiles
Interface ITile
-
- All Superinterfaces:
Locatable
,RuneLiteWrapper<net.runelite.api.Tile>
,net.runelite.api.Tile
public interface ITile extends net.runelite.api.Tile, Locatable, RuneLiteWrapper<net.runelite.api.Tile>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ITile
getBridge()
IDecorativeObject
getDecorativeObject()
IGroundObject
getGroundObject()
java.util.List<IGameObject>
getIGameObjects()
java.util.List<ITileItem>
getIGroundItems()
java.util.List<ITileObject>
getTileObjects()
IWallObject
getWallObject()
boolean
hasLineOfSightTo(ITile other)
boolean
isEmpty()
boolean
isObstructed()
java.util.List<ITile>
pathTo(ITile other)
-
Methods inherited from interface net.storm.api.domain.Locatable
distanceTo, distanceTo, distanceTo2DHypotenuse, distanceToHypotenuse, getLocalLocation, getPlane, getWorldLocation, getWorldX, getWorldY
-
Methods inherited from interface net.storm.api.domain.RuneLiteWrapper
getWrapped
-
-
-
-
Method Detail
-
getWallObject
IWallObject getWallObject()
- Specified by:
getWallObject
in interfacenet.runelite.api.Tile
-
getGroundObject
IGroundObject getGroundObject()
- Specified by:
getGroundObject
in interfacenet.runelite.api.Tile
-
getDecorativeObject
IDecorativeObject getDecorativeObject()
- Specified by:
getDecorativeObject
in interfacenet.runelite.api.Tile
-
getIGameObjects
java.util.List<IGameObject> getIGameObjects()
-
getIGroundItems
java.util.List<ITileItem> getIGroundItems()
-
isObstructed
boolean isObstructed()
-
isEmpty
boolean isEmpty()
-
hasLineOfSightTo
boolean hasLineOfSightTo(ITile other)
-
getTileObjects
java.util.List<ITileObject> getTileObjects()
-
getBridge
ITile getBridge()
- Specified by:
getBridge
in interfacenet.runelite.api.Tile
-
-