Migrate to Serialization package

This commit is contained in:
Matt Nadareski
2023-09-10 23:51:38 -04:00
parent ccdf539ed4
commit 8466edf80f
56 changed files with 29 additions and 13239 deletions

View File

@@ -83,7 +83,7 @@ namespace BinaryObjectScanner.Wrappers
if (data == null || data.Length == 0 || !data.CanSeek || !data.CanRead)
return null;
var file = Builders.VBSP.ParseFile(data);
var file = new SabreTools.Serialization.Streams.VBSP().Deserialize(data);
if (file == null)
return null;