RuneHive-Game
Loading...
Searching...
No Matches
Hitsplat.java
Go to the documentation of this file.
1package com.runehive.game.world.entity.combat.hit;
2
3public enum Hitsplat {
4
5 /** Represents a normal hit type. */
7
8 /** Represents a poison hit type. */
10
11 /** Represents a venom hit type. */
13
14 /** Represents a heal hit type. */
16
17 /** The identification for this hit type. */
18 private final int id;
19
20 /**
21 * Create a new {@link Hitsplat}.
22 *
23 * @param id the identification for this hit type.
24 */
25 Hitsplat(int id) {
26 this.id = id;
27 }
28
29 /**
30 * Gets the identification for this hit type.
31 *
32 * @return the identification for this hit type.
33 */
34 public final int getId() {
35 return id;
36 }
37
38}
final int getId()
Gets the identification for this hit type.
Definition Hitsplat.java:34
final int id
The identification for this hit type.
Definition Hitsplat.java:18