RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
Craftable.java
1
package
com.osroyale.content.skill.impl.crafting;
2
3
import
com.osroyale.game.world.items.Item;
4
10
public
interface
Craftable
{
11
17
String
getName
();
18
24
int
getAnimation
();
25
31
Item
getUse
();
32
38
Item
getWith
();
39
45
CraftableItem
[]
getCraftableItems
();
46
53
Item[]
getIngredients
(
int
index);
54
60
String
getProductionMessage
();
61
}
com.osroyale.content.skill.impl.crafting.CraftableItem
Definition
CraftableItem.java:40
com.osroyale.content.skill.impl.crafting.Craftable
Definition
Craftable.java:10
com.osroyale.content.skill.impl.crafting.Craftable.getCraftableItems
CraftableItem[] getCraftableItems()
com.osroyale.content.skill.impl.crafting.Craftable.getUse
Item getUse()
com.osroyale.content.skill.impl.crafting.Craftable.getWith
Item getWith()
com.osroyale.content.skill.impl.crafting.Craftable.getIngredients
Item[] getIngredients(int index)
com.osroyale.content.skill.impl.crafting.Craftable.getProductionMessage
String getProductionMessage()
com.osroyale.content.skill.impl.crafting.Craftable.getName
String getName()
com.osroyale.content.skill.impl.crafting.Craftable.getAnimation
int getAnimation()