Finish implementing - and testing SNBT

This commit is contained in:
zontreck 2024-06-06 18:14:41 -07:00
parent a0f372693b
commit dfd536ae1c
10 changed files with 57 additions and 3 deletions

View file

@ -15,7 +15,10 @@ class PathHelper {
}
bool exists() {
return File(build()).existsSync();
File fi = File(build());
Directory dir = Directory(build());
return fi.existsSync() || dir.existsSync();
}
PathHelper clone() {