RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
RangedWeaponType.java
1package com.osroyale.game.world.entity.combat.ranged;
2
3import com.osroyale.game.world.items.containers.equipment.Equipment;
4
24
25public enum RangedWeaponType {
26 SHOT(Equipment.ARROWS_SLOT),
27 THROWN(Equipment.WEAPON_SLOT);
28
29 final int slot;
30
31 RangedWeaponType(int slot) {
32 this.slot = slot;
33 }
34
35 public int getSlot() {
36 return slot;
37 }
38}