Package net.runelite.api.events
Class GameObjectDespawned
- java.lang.Object
-
- net.runelite.api.events.GameObjectDespawned
-
public class GameObjectDespawned extends java.lang.ObjectAn event where aGameObjecton aTileis removed.
-
-
Constructor Summary
Constructors Constructor Description GameObjectDespawned()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(java.lang.Object other)booleanequals(java.lang.Object o)GameObjectgetGameObject()The removed game object.TilegetTile()The affected tile.inthashCode()voidsetGameObject(GameObject gameObject)The removed game object.voidsetTile(Tile tile)The affected tile.java.lang.StringtoString()
-
-
-
Method Detail
-
getTile
public Tile getTile()
The affected tile.
-
getGameObject
public GameObject getGameObject()
The removed game object.
-
setTile
public void setTile(Tile tile)
The affected tile.
-
setGameObject
public void setGameObject(GameObject gameObject)
The removed game object.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-