RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
Hitsplat.java
1package com.osroyale.game.world.entity.combat.hit;
2
28
29public enum Hitsplat {
30
33
36
39
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}