Get editor working with new library

This commit is contained in:
zontreck 2024-06-07 00:08:32 -07:00
parent 70fc9f740a
commit 674a3bf5f8
21 changed files with 268 additions and 1172 deletions

5
bin/nbt2snbt.dart Normal file
View file

@ -0,0 +1,5 @@
void main(List<String> args) async {
for (int i = 0; i < args.length; i++) {
print("ARG ${i}: ${args[i]}");
}
}