Adds hit dice and has custom HP toggle to the edit basic info screen.

This commit is contained in:
2021-05-27 21:44:17 -07:00
committed by Tom Hicks
parent 23bcdc237d
commit 71da064423
5 changed files with 91 additions and 3 deletions

View File

@@ -58,4 +58,12 @@ public final class StringHelper {
return sb.toString();
}
}
public static Integer parseInt(String s) {
try {
return Integer.parseInt(s);
} catch (NumberFormatException _ex) {
return null;
}
}
}