Improve dayz mod parsing with more random reverse engineering guesses

This commit is contained in:
Michael Morrison 2022-02-05 19:24:15 -06:00
parent 685a955233
commit b11eac277d
2 changed files with 28 additions and 10 deletions

View file

@ -28,6 +28,10 @@ class Reader {
this.i = 0;
}
setOffset(offset) {
this.i = offset;
}
offset() {
return this.i;
}