RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
Hitsplat.java
1
package
com.osroyale.game.world.entity.combat.hit;
2
28
29
public
enum
Hitsplat
{
30
32
NORMAL
(0),
33
35
POISON
(2),
36
38
VENOM
(3),
39
41
CRITICAL
(4);
42
44
private
final
int
id;
45
51
Hitsplat
(
int
id
) {
52
this.id = id;
53
}
54
60
public
final
int
getId
() {
61
return
id;
62
}
63
64
}
com.osroyale.game.world.entity.combat.hit.Hitsplat.Hitsplat
Hitsplat(int id)
Definition
Hitsplat.java:51
com.osroyale.game.world.entity.combat.hit.Hitsplat.POISON
POISON
Definition
Hitsplat.java:35
com.osroyale.game.world.entity.combat.hit.Hitsplat.getId
final int getId()
Definition
Hitsplat.java:60
com.osroyale.game.world.entity.combat.hit.Hitsplat.VENOM
VENOM
Definition
Hitsplat.java:38
com.osroyale.game.world.entity.combat.hit.Hitsplat.NORMAL
NORMAL
Definition
Hitsplat.java:32
com.osroyale.game.world.entity.combat.hit.Hitsplat.CRITICAL
CRITICAL
Definition
Hitsplat.java:41