starting work on file manager. reorganized project.

This commit is contained in:
Joshua-Ashton01
2022-11-08 17:48:05 -07:00
parent b06a6021c8
commit a1589f627d
48 changed files with 662 additions and 2458 deletions
+26
View File
@@ -0,0 +1,26 @@
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());
}*/
}