Refactoring.

This commit is contained in:
Josh Ashton
2022-11-17 19:12:49 -07:00
parent dd6a0c4ce4
commit b951b04e66
40 changed files with 1529 additions and 1550 deletions
@@ -1,6 +1,6 @@
package Character.AbilityScores;
public class Intelligence extends Stats{
public class Intelligence extends Stats {
private int abilityScore;
private int abilityScoreModifier;
@@ -30,7 +30,7 @@ public class Intelligence extends Stats{
}
// TODO: Need description.
// TODO: Need description.
public String getDescription() {
return "";
@@ -49,7 +49,7 @@ public class Intelligence extends Stats{
public void increaseScore() {
abilityScore++;
}
}