Skip to content

Commit 8e7e277

Browse files
committed
DnDCharacter: bugfix starter implementation
1 parent dc178a3 commit 8e7e277

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

exercises/dnd-character/src/main/java/DnDCharacter.java

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,32 @@ int modifier(int input) {
88
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
99
}
1010

11+
int getStrength() {
12+
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
13+
}
14+
15+
int getDexterity() {
16+
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
17+
}
18+
19+
int getConstitution() {
20+
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
21+
}
22+
23+
int getIntelligence() {
24+
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
25+
}
26+
27+
int getWisdom() {
28+
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
29+
}
30+
31+
int getCharisma() {
32+
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
33+
}
34+
35+
int getHitpoints() {
36+
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
37+
}
38+
1139
}

0 commit comments

Comments
 (0)