RuneHive-Game
Loading...
Searching...
No Matches
FletchableItem.java
Go to the documentation of this file.
1package com.runehive.content.skill.impl.fletching;
2
3import com.runehive.game.world.items.Item;
4
5public final class FletchableItem {
6
7 private final Item product;
8
9 private final int level;
10
11 private final double experience;
12
14 this.product = product;
15 this.level = level;
16 this.experience = experience;
17 }
18
19 public Item getProduct() {
20 return product;
21 }
22
23 public int getLevel() {
24 return level;
25 }
26
27 public double getExperience() {
28 return experience;
29 }
30}
FletchableItem(Item product, int level, double experience)
The container class that represents an item that can be interacted with.
Definition Item.java:21