Package net.runelite.api.events
Class GroundObjectDespawned
- java.lang.Object
-
- net.runelite.api.events.GroundObjectDespawned
-
public class GroundObjectDespawned extends java.lang.ObjectAn event where aGroundObjecton aTilehas been removed.
-
-
Constructor Summary
Constructors Constructor Description GroundObjectDespawned()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(java.lang.Object other)booleanequals(java.lang.Object o)GroundObjectgetGroundObject()The removed ground object.TilegetTile()The affected tile.inthashCode()voidsetGroundObject(GroundObject groundObject)The removed ground object.voidsetTile(Tile tile)The affected tile.java.lang.StringtoString()
-
-
-
Method Detail
-
getTile
public Tile getTile()
The affected tile.
-
getGroundObject
public GroundObject getGroundObject()
The removed ground object.
-
setTile
public void setTile(Tile tile)
The affected tile.
-
setGroundObject
public void setGroundObject(GroundObject groundObject)
The removed ground 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
-
-