-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStats.java
More file actions
43 lines (36 loc) · 731 Bytes
/
Stats.java
File metadata and controls
43 lines (36 loc) · 731 Bytes
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
/**
*@author Tyler Lericos
*@version 1.0
*Interfaces
*Spring Semester/Freshman
*/
abstract class Stats {
int strength = 0;
int wisdom = 0;
int intellegence=0;
int agility=0;
public int getStrength() {
return strength;
}
public void setStrength(int strength) {
this.strength = strength;
}
public int getWisdom() {
return wisdom;
}
public void setWisdom(int wisdom) {
this.wisdom = wisdom;
}
public int getIntellegence() {
return intellegence;
}
public void setIntellegence(int intellegence) {
this.intellegence = intellegence;
}
public int getAgility() {
return agility;
}
public void setAgility(int agility) {
this.agility = agility;
}
}