SNBT Serialization now implemented

This commit is contained in:
zontreck 2024-05-08 20:35:08 -07:00
parent 84b37f8b04
commit daf9cb7376
16 changed files with 54 additions and 28 deletions

View file

@ -383,6 +383,8 @@ class StringBuilder {
StringBuilder();
bool get isEmpty => _buffer.isEmpty;
void append(String value) {
_buffer += value;
}