Package net.runelite.api
Class Hitsplat
- java.lang.Object
-
- net.runelite.api.Hitsplat
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Hitsplat.HitsplatType
An enumeration of hitsplat types.
-
Constructor Summary
Constructors Constructor Description Hitsplat(Hitsplat.HitsplatType hitsplatType, int amount, int disappearsOnGameCycle)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getAmount()
The value displayed by the hitsplat.int
getDisappearsOnGameCycle()
When the hitsplat will disappear.Hitsplat.HitsplatType
getHitsplatType()
The type of hitsplat.boolean
isMine()
boolean
isOthers()
-
-
-
Constructor Detail
-
Hitsplat
public Hitsplat(Hitsplat.HitsplatType hitsplatType, int amount, int disappearsOnGameCycle)
-
-
Method Detail
-
isMine
public boolean isMine()
-
isOthers
public boolean isOthers()
-
getHitsplatType
public Hitsplat.HitsplatType getHitsplatType()
The type of hitsplat.
-
getAmount
public int getAmount()
The value displayed by the hitsplat.
-
getDisappearsOnGameCycle
public int getDisappearsOnGameCycle()
When the hitsplat will disappear.
-
-