Notes on implementation

This commit is contained in:
Joshua-Ashton01
2022-10-11 10:40:51 -06:00
parent c79d1f0b38
commit 0906a04d09
2 changed files with 6 additions and 2 deletions
@@ -8,15 +8,19 @@ public class Barbarian implements ClassTemplate {
private int rageBonusDmg; private int rageBonusDmg;
private int level;
// TODO: This should be the type of die. // TODO: This should be the type of die.
private int hitDie; private int hitDie;
public Barbarian(Stats[] stats) { public Barbarian(Stats[] stats, int level) {
} }
// TODO: Need to figure out how to contain class progression information. Potentially a double String array, each row equals a level, each column a different thing. Should class features be a separate class, ie. BarbFeatures, BardFeatures, etc?
public String getDescription() { public String getDescription() {
// TODO Auto-generated method stub // TODO Auto-generated method stub
return null; return null;