RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
CollectionItem.java
1
package
com.osroyale.content.collectionlog;
2
23
24
public
class
CollectionItem {
25
26
private
int
id;
27
private
int
amount;
28
29
public
CollectionItem(
int
item,
int
amount) {
30
this.id = item;
31
this.amount = amount;
32
}
33
34
public
int
getId() {
35
return
this.id;
36
}
37
38
public
int
getAmount() {
39
return
this.amount;
40
}
41
42
public
void
setAmount(
int
amount) {
43
this.amount = amount;
44
}
45
46
}