RuneHive-Game
Loading...
Searching...
No Matches
CollectionItem.java
Go to the documentation of this file.
1package com.runehive.content.collectionlog;
2
3public class CollectionItem {
4
5 private int id;
6 private int amount;
7
8 public CollectionItem(int item, int amount) {
9 this.id = item;
10 this.amount = amount;
11 }
12
13 public int getId() {
14 return this.id;
15 }
16
17 public int getAmount() {
18 return this.amount;
19 }
20
21 public void setAmount(int amount) {
22 this.amount = amount;
23 }
24
25}