RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
Fletchable.java
1
package
com.osroyale.content.skill.impl.fletching;
2
3
import
com.osroyale.game.world.items.Item;
4
5
public
interface
Fletchable {
6
7
int
getAnimation();
8
9
int
getGraphics();
10
11
Item getUse();
12
13
Item getWith();
14
15
FletchableItem[] getFletchableItems();
16
17
Item[] getIngredients();
18
19
String getProductionMessage();
20
}