-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathItems.java
49 lines (36 loc) · 870 Bytes
/
Items.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
class Items {
/*
* Items class - Creates a item class with it's basic configurations. -
*
*/
public int value;
public String itemName;
public float itemWeight;
private boolean weapon=false;
public void setWeapon(boolean weapon) {
this.weapon = weapon;
}
public boolean isWeapon() {
return weapon;
}
public Items() {
this.itemName = itemName;
this.itemWeight = itemWeight;
this.value = value;
}
public float getItemWeight() {
return itemWeight;
}
public int getValue() {
return value;
}
public void setItemName(String itemName) {
this.itemName = itemName;
}
public void setItemWeight(float itemWeight) {
this.itemWeight = itemWeight;
}
public void setValue(int value) {
this.value = value;
}
}