starting work on file manager. reorganized project.
This commit is contained in:
@@ -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());
|
||||
|
||||
}*/
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user