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

@ -419,6 +419,9 @@ class StringReader {
// Check if there's more to read
bool get canRead => _position < _buffer.length;
// Get the number of chars seeked
int get getSeeked => _lastPostion - _position;
// Read the next character
String next() {
if (canRead) {