RuneHive-Game
Loading...
Searching...
No Matches
Fletchable.java
Go to the documentation of this file.
1
package
com.runehive.content.skill.impl.fletching;
2
3
import
com.runehive.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
}
com.runehive.content.skill.impl.fletching.FletchableItem
Definition
FletchableItem.java:5
com.runehive.game.world.items.Item
The container class that represents an item that can be interacted with.
Definition
Item.java:21
com.runehive.content.skill.impl.fletching.Fletchable
Definition
Fletchable.java:5
com.runehive.content.skill.impl.fletching.Fletchable.getAnimation
int getAnimation()
com.runehive.content.skill.impl.fletching.Fletchable.getWith
Item getWith()
com.runehive.content.skill.impl.fletching.Fletchable.getUse
Item getUse()
com.runehive.content.skill.impl.fletching.Fletchable.getFletchableItems
FletchableItem[] getFletchableItems()
com.runehive.content.skill.impl.fletching.Fletchable.getIngredients
Item[] getIngredients()
com.runehive.content.skill.impl.fletching.Fletchable.getGraphics
int getGraphics()
com.runehive.content.skill.impl.fletching.Fletchable.getProductionMessage
String getProductionMessage()