File tree Expand file tree Collapse file tree
exercises/dnd-character/src/main/java Expand file tree Collapse file tree Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments