IL2CPP: Change metadata and binary to derive from BinaryObjectStream

This commit is contained in:
Katy Coe
2020-12-21 06:37:29 +01:00
parent 620d985b71
commit c00b474f33
31 changed files with 172 additions and 179 deletions

View File

@@ -10,7 +10,7 @@ namespace Il2CppInspector
{
internal class ULEB128
{
public static ulong Decode(IFileFormatReader next) {
public static ulong Decode(IFileFormatStream next) {
ulong uleb = 0;
byte b = 0x80;
for (var shift = 0; b >> 7 == 1; shift += 7) {