Files
dnd/dndBuilder/src/Tests/dndTestClient.java
T
2022-11-17 19:12:49 -07:00

27 lines
586 B
Java

package Tests;
public class dndTestClient {
// Antiquated test, need to refactor for new project setup.
/* public static void main(String[] args) {
// TODO Auto-generated method stub
CharacterStats stats = new CharacterStats(10, 10, 10, 10, 10, 10);
Dragonborn chosenRace = new Dragonborn();
for(int i = 0; i < chosenRace.getASI().length; i++) {
stats.increaseStat(chosenRace.getASI()[i]);
}
Character characterInfo = new Character("Generic", 50, 4, 6, 150, "brown", "black", chosenRace, stats);
System.out.println(characterInfo.toString());
}*/
}