Got the basic path tracing working.

This commit is contained in:
Winston Lowe
2026-01-24 20:36:14 -08:00
parent 2089613696
commit fcf741b20a
3 changed files with 104 additions and 2 deletions
+5
View File
@@ -1,4 +1,5 @@
import 'dart:convert';
import 'dart:ffi';
import 'dart:typed_data';
// Buffer Reader - sequential binary data reader with pointer tracking
@@ -18,6 +19,10 @@ class BufferReader {
return data;
}
void skipBytes(int count) {
_pointer += count;
}
Uint8List readRemainingBytes() => readBytes(remaining);
String readString() =>