Package org.dreambot.api.methods.walking
Class TileObstacle
- java.lang.Object
-
- org.dreambot.api.methods.walking.TileObstacle
-
public class TileObstacle extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TileObstacle.Type
-
Constructor Summary
Constructors Constructor Description TileObstacle(TileObstacle.Type obstacleType, GameObject obstacle)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getAction()
GameObject
getObstacle()
TileObstacle.Type
getObstacleType()
Tile
getTile()
boolean
handle()
boolean
isAscending()
boolean
isCompleted()
boolean
isDescending()
boolean
isEntry()
void
setAscending()
void
setCompleted(boolean completed)
void
setDescending()
void
setEntry()
void
setObstacle(GameObject obstacle)
void
setObstacleType(TileObstacle.Type obstacleType)
void
setTile(Tile tile)
-
-
-
Constructor Detail
-
TileObstacle
public TileObstacle(TileObstacle.Type obstacleType, GameObject obstacle)
-
-
Method Detail
-
getTile
public Tile getTile()
-
setTile
public void setTile(Tile tile)
-
getObstacle
public GameObject getObstacle()
-
setObstacle
public void setObstacle(GameObject obstacle)
-
getObstacleType
public TileObstacle.Type getObstacleType()
-
setObstacleType
public void setObstacleType(TileObstacle.Type obstacleType)
-
isCompleted
public boolean isCompleted()
-
setCompleted
public void setCompleted(boolean completed)
-
setEntry
public void setEntry()
-
setAscending
public void setAscending()
-
setDescending
public void setDescending()
-
isEntry
public boolean isEntry()
-
isAscending
public boolean isAscending()
-
isDescending
public boolean isDescending()
-
handle
public boolean handle()
-
getAction
public java.lang.String getAction()
-
-